@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d1b69;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --light: #faf5ff;
    --dark: #1e1b4b;
    --text: #374151;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2d1b69 0%, #7c3aed 50%, #a855f7 100%);
    --shadow: 0 4px 20px rgba(45, 27, 105, 0.15);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    min-width: 320px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s ease;
    width: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(45, 27, 105, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.logo span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo i {
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.nav {
    display: none;
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    margin-top: 10px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 15px;
    gap: 5px;
}

.nav a {
    padding: 10px 15px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background: var(--light);
    color: var(--secondary);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header span {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text);
    font-size: 13px;
}

.features {
    background: var(--light);
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text);
}

.about-section {
    background: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 12px;
    font-size: 13px;
}

.about-list {
    margin: 15px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.about-list i {
    color: var(--secondary);
    margin-top: 3px;
}

.products-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.products-grid {
    display: grid;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--dark);
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 14px;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 11px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.product-price .btn {
    padding: 8px 14px;
    font-size: 11px;
}

.testimonials {
    background: var(--primary);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials .section-header span {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.author-info strong {
    display: block;
    font-size: 13px;
}

.author-info span {
    font-size: 11px;
    opacity: 0.7;
}

.cta-section {
    background: var(--light);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    margin-bottom: 20px;
    font-size: 13px;
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 25px 20px;
    border-radius: var(--radius);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-wrapper h3 i {
    color: var(--secondary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--secondary);
}

.checkbox-group label {
    font-size: 11px;
    margin-bottom: 0;
    color: var(--text);
}

.checkbox-group a {
    color: var(--secondary);
}

.contact-info-box {
    background: var(--gradient);
    color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
}

.contact-info-box h3 {
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    min-width: 0;
}

.contact-info-item > div {
    min-width: 0;
    flex: 1;
}

.contact-info-item i {
    font-size: 18px;
    margin-top: 2px;
    opacity: 0.9;
}

.contact-info-item strong {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
    opacity: 0.8;
}

.contact-info-item span,
.contact-info-item a {
    color: var(--white);
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.map-container {
    margin-top: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 180px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo i {
    color: var(--accent);
}

.footer-text {
    font-size: 12px;
    opacity: 0.7;
    max-width: 300px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-links a {
    color: var(--white);
    font-size: 11px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 11px;
    opacity: 0.6;
}

.page-hero {
    padding: 100px 0 50px;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.9;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.5;
}

.policy-content {
    padding: 50px 0;
}

.policy-content h2 {
    margin: 25px 0 12px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 13px;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 450px;
}

.error-content i,
.thankyou-content i {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.error-content h1,
.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.error-content p,
.thankyou-content p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 25px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 12px;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 11px;
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--secondary);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    color: var(--text);
}

.process-section {
    background: var(--light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 12px;
    color: var(--text);
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}

.team-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 11px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.team-card p {
    font-size: 11px;
    color: var(--text);
}

.stats-section {
    background: var(--gradient);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 11px;
    opacity: 0.8;
}

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    gap: 15px;
}

.value-card {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.value-card i {
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.value-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.value-card p {
    font-size: 12px;
    color: var(--text);
}

.faq-section {
    background: var(--light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 12px;
    color: var(--text);
}

.presentation-hero {
    background: var(--gradient);
    padding: 100px 0 50px;
}

.presentation-hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--white);
}

.presentation-hero-text h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.presentation-hero-text p {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 20px;
}

.presentation-hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-creative {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.contact-creative::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-intro h2 {
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 13px;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .features-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 846px) {
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    
    .header-inner {
        padding: 10px 25px;
    }
    
    .nav {
        display: flex;
        gap: 5px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-image {
        flex: 1;
    }
    
    .about-text {
        flex: 1;
    }
    
    .contact-wrapper {
        flex-direction: row;
    }
    
    .contact-form-wrapper,
    .contact-info-box {
        flex: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-text {
        margin: 0;
    }
    
    .presentation-hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .presentation-hero-text,
    .presentation-hero-image {
        flex: 1;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        flex-direction: row;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }
}

/* Extra small devices (320px - 374px) */
@media (max-width: 374px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header-inner {
        padding: 6px 10px;
        border-radius: 40px;
        gap: 8px;
    }
    
    .logo {
        font-size: 12px;
        gap: 4px;
        max-width: 140px;
    }
    
    .logo span {
        font-size: 11px;
    }
    
    .logo i {
        font-size: 16px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 35px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header span {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .section-header p {
        font-size: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 14px;
    }
    
    .feature-card p {
        font-size: 11px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 13px;
    }
    
    .product-info p {
        font-size: 10px;
    }
    
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-price .btn {
        width: 100%;
        justify-content: center;
    }
    
    .price {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-card p {
        font-size: 12px;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .author-info strong {
        font-size: 12px;
    }
    
    .author-info span {
        font-size: 10px;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 12px;
    }
    
    .contact-form-wrapper,
    .contact-info-box {
        padding: 20px 15px;
    }
    
    .contact-info-item {
        gap: 10px;
    }
    
    .contact-info-item i {
        font-size: 16px;
    }
    
    .contact-info-item strong {
        font-size: 11px;
    }
    
    .contact-info-item span,
    .contact-info-item a {
        font-size: 12px;
        word-break: break-word;
    }
    
    .map-container {
        height: 150px;
    }
    
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-logo {
        font-size: 14px;
    }
    
    .footer-text {
        font-size: 11px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 10px;
    }
    
    .copyright {
        font-size: 10px;
    }
    
    .page-hero {
        padding: 90px 0 40px;
    }
    
    .page-hero p {
        font-size: 13px;
    }
    
    .breadcrumb {
        font-size: 11px;
    }
    
    .policy-content h2 {
        font-size: 1.1rem;
    }
    
    .policy-content h3 {
        font-size: 1rem;
    }
    
    .policy-content p,
    .policy-content ul li {
        font-size: 12px;
    }
    
    .error-content i,
    .thankyou-content i {
        font-size: 50px;
    }
    
    .error-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .error-content p,
    .thankyou-content p {
        font-size: 13px;
    }
    
    .cookie-popup {
        padding: 12px;
    }
    
    .cookie-content {
        gap: 10px;
    }
    
    .cookie-content p {
        font-size: 11px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 1.6rem;
    }
    
    .stat-item p {
        font-size: 10px;
    }
    
    .team-card {
        padding: 20px 15px;
    }
    
    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .team-card h3 {
        font-size: 13px;
    }
    
    .value-card {
        padding: 15px;
        gap: 10px;
    }
    
    .value-card i {
        font-size: 20px;
    }
    
    .value-card h3 {
        font-size: 13px;
    }
    
    .value-card p {
        font-size: 11px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .faq-answer p {
        font-size: 11px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card i {
        font-size: 26px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .service-card p {
        font-size: 11px;
    }
    
    .process-step {
        gap: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-content h3 {
        font-size: 13px;
    }
    
    .step-content p {
        font-size: 11px;
    }
    
    .contact-intro i {
        font-size: 35px;
    }
    
    .contact-intro p {
        font-size: 12px;
    }
    
    .menu-toggle {
        padding: 6px;
    }
    
    .menu-toggle span {
        width: 18px;
    }
    
    .nav.active {
        left: 10px;
        right: 10px;
        padding: 12px;
        margin-top: 8px;
    }
    
    .nav a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .page-hero {
        padding: 80px 0 35px;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        gap: 6px;
        font-size: 10px;
        margin-top: 12px;
    }
    
    .about-list li {
        font-size: 12px;
    }
    
    .checkbox-group label {
        font-size: 10px;
    }
    
    .form-group label {
        font-size: 11px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 9px 10px;
        font-size: 12px;
    }
}
