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

:root {
    --primary: #2563EB;
    --secondary: #3B82F6;
    --accent: #60A5FA;
    --bg-white: #FFFFFF;
    --bg-light: #F3F4F6;
    --text-dark: #111827;
    --text-gray: #6B7280;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

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

.navbar {
    background: var(--bg-white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
}

.btn-secondary:hover {
    background: #E5E7EB;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.hero {
    padding: 140px 0 60px;
    background: var(--bg-white);
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-highlights {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.hero-visual {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
}

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

.description-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.description-content > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.desc-block {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

.desc-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.desc-block p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.description-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.desc-feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.desc-feature strong {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.desc-feature span {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.use-cases-detailed {
    padding: 60px 0;
    background: var(--bg-white);
}

.use-cases-detailed h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.partners h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.use-case-category {
    margin-bottom: 60px;
}

.category-header {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.category-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.category-header-content h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
}

.category-header-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.use-case-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.use-case-icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.use-case-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.use-case-item:hover .use-case-icon img {
    transform: scale(1.05);
}

.use-case-item h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin: 20px 20px 10px;
}

.use-case-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 20px 20px;
}

.why-works {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.why-works h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 15px;
}

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

.partners h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.partner-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.partner-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.partner-content {
    padding: 25px;
}

.partner-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.partner-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.partner-benefits {
    margin-bottom: 50px;
}

.partner-benefits h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid-partner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    stroke: white;
}

.benefit-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.partner-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px 40px;
    border-radius: 12px;
    color: white;
}

.partner-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.partner-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.partner-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.partner-cta .btn-primary:hover {
    background: var(--bg-light);
}

.partner-cta .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.partner-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.about {
    padding: 60px 0;
    background: var(--bg-white);
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.about-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.about-company {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-company h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-company p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.company-info {
    margin-bottom: 40px;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

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

.info-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.warranty-info {
    background: linear-gradient(135deg, #EFF6FF 0%, var(--bg-white) 100%);
    padding: 40px;
    border-radius: 12px;
}

.warranty-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.warranty-info > p {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.warranty-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.warranty-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
}

.warranty-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.warranty-item ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.warranty-item li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.warranty-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 60%, #312e81 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.legal-content {
    padding: 60px 0;
    background: var(--bg-white);
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.faq-page {
    padding: 60px 0;
    background: var(--bg-white);
}

.faq-page .faq-list {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-page .faq-item {
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-page .faq-item:hover {
    border-color: var(--primary);
}

.faq-page .faq-item summary {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    font-size: 16px;
}

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

.faq-page .faq-item summary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    stroke: var(--primary);
}

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

.faq-page .faq-item p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.faq-cta p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.use-cases {
    padding: 60px 0;
    background: var(--bg-white);
}

.use-cases h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.use-case img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.use-case img:hover {
    transform: scale(1.05);
}

.use-case h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.use-case p {
    color: var(--text-gray);
    font-size: 15px;
}

.features {
    padding: 60px 0;
    background: var(--bg-white);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 30px 24px;
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.feature-list li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.how-it-works {
    padding: 60px 0;
    background: var(--bg-white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.step-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bg-light);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.step-content {
    width: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
}

.step h3 {
    font-size: 20px;
    margin: 16px 0 12px;
}

.step p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

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

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    padding: 40px 30px;
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 12px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--bg-light);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #E5E7EB;
    color: var(--text-gray);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.mobile-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 8px;
}

.mobile-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-divider {
    border: none;
    border-top: 2px solid var(--bg-light);
    margin: 10px 0;
}

.mobile-btn {
    text-align: center;
    margin-top: 5px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Coming Soon Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.3s;
}

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

.modal-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    stroke: white;
}

.modal h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--bg-white);
}

.social-proof h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

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

.testimonial {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-gray);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 9990;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

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

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.back-to-top svg {
    stroke: white;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 0 0 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.contact-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--primary);
}

.contact-card-icon svg {
    stroke: var(--primary);
    width: 22px;
    height: 22px;
}

.contact-card-icon.whatsapp {
    background: transparent;
    border-color: #25D366;
}

.contact-card-icon.whatsapp svg {
    fill: #25D366;
    stroke: none;
    width: 22px;
    height: 22px;
}

.contact-card-icon.location {
    background: transparent;
    border-color: #EF4444;
}

.contact-card-icon.location svg {
    stroke: #EF4444;
    width: 22px;
    height: 22px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-card-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

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

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

.required {
    color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-error {
    display: block;
    font-size: 13px;
    color: #EF4444;
    margin-top: 4px;
    min-height: 18px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    justify-content: center;
}

.btn-submit svg {
    stroke: white;
}

.btn-text-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    stroke: #059669;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #059669;
}

.form-success p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    font-size: 14px;
    color: var(--text-gray);
}

.hours-row strong {
    font-size: 14px;
    color: var(--text-dark);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg-white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.quick-link:hover {
    background: var(--primary);
}

.quick-link svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.quick-link span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.quick-link:hover svg {
    stroke: white;
}

.quick-link:hover span {
    color: white;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.highlight-card h3 {
    color: white;
}

.highlight-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-whatsapp {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.btn-whatsapp::after {
    content: '';
    font-size: 13px;
    color: white;
    font-weight: 500;
}

.btn-whatsapp:hover::after {
    content: 'Chat with us';
}

/* Map */
.contact-map {
    margin-top: 10px;
}

.contact-map h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
}

.map-wrapper iframe {
    display: block;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}

.map-address svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.map-address p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Contact FAQ Compact */
.contact-faq {
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-faq h3 {
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.faq-intro {
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.faq-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.faq-category-compact {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.faq-cat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 15px;
}

.faq-cat-header svg {
    flex-shrink: 0;
}

.faq-compact-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-white);
}

.faq-compact-item:last-child {
    border-bottom: none;
}

.faq-compact-item summary {
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-compact-item summary::after {
    content: '+';
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.faq-compact-item[open] summary::after {
    content: '−';
}

.faq-compact-item p {
    padding: 0 16px 14px;
    margin: 0;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-view-all {
    text-align: center;
}

.faq-view-all .btn-outline {
    padding: 12px 28px;
}

/* WhatsApp QR Section */
.qrb-wa-qr-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.qrb-wa-qr-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.qrb-wa-qr-text p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.qrb-wa-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.qrb-wa-open-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.qrb-wa-qr-img-wrap {
    text-align: center;
}

.qrb-wa-qr-img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    border: 2px solid #25D366;
}

.qrb-wa-qr-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Abuse Report Sections */
.abuse-section {
    padding: 60px 0;
}

.abuse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.abuse-grid-reverse {
    direction: rtl;
}

.abuse-grid-reverse > * {
    direction: ltr;
}

.abuse-image {
    width: 100%;
    height: 400px;
}

.abuse-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.abuse-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Scroll animation base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links, .nav-buttons {
        display: none;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn-lg {
        width: 100%;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .highlight {
        font-size: 14px;
    }
    
    .hero-visual {
        margin: 0 -20px;
    }
    
    .description-grid,
    .description-features {
        grid-template-columns: 1fr;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        height: 200px;
    }
    
    .partner-types {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid-partner {
        grid-template-columns: 1fr;
    }
    
    .partner-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .partner-cta .cta-buttons .btn-lg {
        width: 100%;
    }
    
    .info-grid,
    .warranty-details {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid, .steps, .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .testimonials {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 26px;
    }

    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: -30px;
    }

    .contact-card {
        margin-top: 30px;
        padding: 16px 12px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .contact-card-value {
        font-size: 11px;
        margin-bottom: 2px;
        word-break: break-word;
    }

    .contact-card-desc {
        font-size: 10px;
    }

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

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

    .qrb-wa-qr-img-wrap {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .faq-compact-grid {
        grid-template-columns: 1fr;
    }

    .qrb-wa-qr-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .qrb-wa-qr-img {
        max-width: 250px;
    }

    .abuse-grid,
    .abuse-grid-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .abuse-grid-mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .abuse-image {
        height: 250px;
    }

    .abuse-content h2 {
        font-size: 24px;
    }
}
