/* Minimal styles to make the template functional without original theme files */

:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --primary: #111111;
    --border: #e5e7eb;
    --theme-light: #f9fafb;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.hidden {
    display: none !important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.ml-auto {
    margin-left: auto;
}

.mr-3 {
    margin-right: .75rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.p-5 {
    padding: 1.25rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pt-7 {
    padding-top: 1.75rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.pr-9 {
    padding-right: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-bold {
    font-weight: 700;
}

.rounded {
    border-radius: .375rem;
}

.rounded-lg {
    border-radius: .5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-b-\[80px\] {
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.rounded-t-\[20px\] {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.text-center {
    text-align: center;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.space-x-2\.5>*+* {
    margin-left: 0.625rem;
}

.space-x-5>*+* {
    margin-left: 1.25rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gx-5 {
    gap: 1.25rem;
}

.gap-7 {
    gap: 1.75rem;
}

.w-full {
    width: 100%;
}

.object-contain {
    object-fit: contain;
}

.overflow-hidden {
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.border-border {
    border-color: var(--border);
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.-z-\[1\] {
    z-index: -1;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Gradient helpers (used by ID forms/buttons) */
.bg-gradient-to-r {
    --tw-gradient-from: #764ba2;
    --tw-gradient-to: #667eea;
    background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.bg-gradient-to-br {
    --tw-gradient-from: #764ba2;
    --tw-gradient-to: #667eea;
    background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.from-purple-600 {
    --tw-gradient-from: #764ba2;
}

.to-blue-600 {
    --tw-gradient-to: #667eea;
}

.from-blue-600 {
    --tw-gradient-from: #667eea;
}

.to-purple-600 {
    --tw-gradient-to: #764ba2;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Responsive column helpers (approximate to design classes) */
@media (min-width: 640px) {
    .sm\:bg-red-200 {
        background-color: #fecaca;
    }
}

@media (min-width: 768px) {
    .md\:col-6 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .md\:bg-yellow-200 {
        background-color: #fef08a;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:col-3 {
        flex: 0 0 calc(25% - 0.75rem);
        max-width: calc(25% - 0.75rem);
    }

    .lg\:col-4 {
        flex: 0 0 calc(33.3333% - 0.67rem);
        max-width: calc(33.3333% - 0.67rem);
    }

    .lg\:col-5 {
        flex: 0 0 calc(41.6667% - 0.6rem);
        max-width: calc(41.6667% - 0.6rem);
    }

    .lg\:col-6 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .lg\:col-7 {
        flex: 0 0 calc(58.3333% - 0.43rem);
        max-width: calc(58.3333% - 0.43rem);
    }

    .lg\:col-11 {
        flex: 0 0 calc(91.6667% - 0.09rem);
        max-width: calc(91.6667% - 0.09rem);
    }

    .lg\:order-1 {
        order: 1;
    }

    .lg\:order-2 {
        order: 2;
    }

    .lg\:mt-0 {
        margin-top: 0 !important;
    }

    .lg\:flex {
        display: flex !important;
    }

    .lg\:hidden {
        display: none !important;
    }

    .lg\:text-start {
        text-align: left;
    }

    .lg\:bg-green-200 {
        background-color: #bbf7d0;
    }

    .lg\:space-x-5>*+* {
        margin-left: 1.25rem;
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
    }

    .lg\:-ml-4 {
        margin-left: -1rem;
    }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .xl\:py-\[120px\] {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .xl\:bg-blue-200 {
        background-color: #bfdbfe;
    }
}

@media (min-width: 1536px) {
    .\32xl\:bg-pink-200 {
        background-color: #fbcfe8;
    }
}

/* Header / Navbar */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.navbar-brand a {
    display: block;
    line-height: 0;
}

.navbar-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    line-height: 1 !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Nav Menu */
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: block;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 300px;
}

.nav-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    transform: translateY(-1px);
}

.nav-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.lang-globe-icon {
    flex-shrink: 0;
    stroke-width: 2.5;
}

.lang-flag {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-flag-small {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.lang-icon {
    font-size: 1.25rem;
}

.lang-text {
    flex: 1;
    text-align: center;
    font-weight: 600;
}

.lang-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.lang-toggle.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    display: none;
    margin: 1rem auto 0;
    padding: 0;
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 320px;
    max-height: 450px;
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-menu.active {
    display: block;
}

.lang-menu-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 1rem 1rem 0 0;
}

.lang-menu-grid {
    padding: 0.75rem;
    max-height: 380px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.lang-menu-grid::-webkit-scrollbar {
    width: 6px;
}

.lang-menu-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.lang-menu-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.lang-menu-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5568d3 0%, #654393 100%);
}

.lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.875rem 0.5rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
}

.lang-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.lang-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.lang-item.active .lang-code,
.lang-item.active .lang-name {
    color: white;
}

.lang-code {
    font-size: 0.875rem;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 0.5px;
}

.lang-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.2;
}

/* Desktop Nav */
@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 2rem;
        border: none;
        padding: 0;
        box-shadow: none;
        flex: 1;
    }

    .nav-buttons {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        margin: 0;
    }

    .nav-btn {
        padding: 0.625rem 1.25rem;
        width: auto;
        max-width: none;
    }

    .language-dropdown {
        padding: 0;
        align-items: flex-start;
    }

    .lang-toggle {
        width: auto;
        max-width: none;
        min-width: 160px;
    }

    .lang-text {
        text-align: left;
    }

    .lang-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        min-width: 420px;
        max-width: 420px;
        max-height: 500px;
        margin: 0;
        z-index: 50;
    }

    .lang-menu-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem;
        max-height: 420px;
    }

    .lang-item {
        padding: 1rem 0.75rem;
    }
}

/* Features Showcase Section */
.features-showcase {
    padding: 80px 0;
    background: #ffffff;
}

.features-showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.features-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.features-showcase-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.2;
}

.features-showcase-header p {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .feature-showcase-item {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        padding: 0;
    }

    .feature-showcase-reverse {
        direction: rtl;
    }

    .feature-showcase-reverse>* {
        direction: ltr;
    }
}

.feature-showcase-content {
    padding: 2rem 0;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-showcase-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.feature-showcase-text {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-showcase-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-showcase-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.25rem;
}

.feature-showcase-image {
    position: relative;
}

.feature-screenshot-border {
    position: relative;
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.feature-screenshot-border:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.feature-screenshot-border img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .features-showcase-header h2 {
        font-size: 2rem;
    }

    .feature-showcase-title {
        font-size: 1.5rem;
    }

    .feature-showcase-item {
        margin-bottom: 4rem;
    }
}

/* Services New Section */
.services-new {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.2;
}

.services-description {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.service-card-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
}

.service-card-featured .service-card-title,
.service-card-featured .service-card-text,
.service-card-featured .service-card-list,
.service-card-featured .service-card-link {
    color: #fff;
}

.service-card-featured .service-card-list li {
    color: rgba(255, 255, 255, 0.92);
}

.service-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.service-card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.service-card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-card-featured .service-card-list li:before {
    color: #fff;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.service-card-link:hover {
    gap: 0.75rem;
}

.service-card-featured .service-card-link {
    color: #fff;
}

/* Services Video Section */
.services-video-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .services-video-section {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }
}

.video-content-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.video-content-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.video-content-text {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-content-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-stat {
    text-align: center;
}

.video-stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.video-stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
}

.services-video-player {
    position: relative;
}

.video-thumbnail-new {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-new img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.video-play-btn-new:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.video-play-btn-new svg {
    margin-left: 4px;
}

.video-player-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 10;
}

.video-player-overlay.hidden {
    display: none;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Section */
.faq-section {
    padding: 56px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.faq-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background: #ffffff;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: .875rem;
}

/* Sections */
.section {
    padding: 60px 0;
}

/* Utility background used by CTA blocks */
.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner {
    background: linear-gradient(180deg, #fafafa, #ffffff);
    position: relative;
}

.banner-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .banner-title {
        font-size: 3rem;
    }
}

.banner-shape {
    pointer-events: none;
}

/* Logo Cloud */
.logo-cloud {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
}

.logo-cloud-container {
    max-width: 1280px;
}

.logo-cloud-title {
    text-align: center;
    font-size: 1.125rem;
    line-height: 2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.logo-cloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2rem;
    max-width: 512px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 640px) {
    .logo-cloud-grid {
        max-width: 576px;
        grid-template-columns: repeat(6, 1fr);
        gap: 2.5rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .logo-cloud-grid {
        max-width: none;
        grid-template-columns: repeat(5, 1fr);
    }
}

.logo-cloud-img {
    max-height: 3rem;
    width: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-cloud-img:hover {
    opacity: 1;
}

.logo-span-2 {
    grid-column: span 2;
}

.logo-start-2 {
    grid-column-start: 2;
}

@media (min-width: 640px) {
    .sm-start-2 {
        grid-column-start: 2;
    }

    .sm-start-auto {
        grid-column-start: auto;
    }
}

@media (min-width: 1024px) {
    .lg-span-1 {
        grid-column: span 1;
    }
}

/* Key features */
.key-feature {
    position: relative;
}

.key-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .key-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .key-feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tabs */
.tab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.tab-nav-item {
    padding: .75rem 1rem;
    cursor: pointer;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.tab-nav-item:hover {
    background: #f9fafb;
}

.tab-nav-item.active {
    border-left-color: var(--primary);
    background: #f9fafb;
    font-weight: 500;
}

.tab-content-panel {
    display: none;
}

.tab-content-panel.active {
    display: block;
}

/* Video */
.video {
    position: relative;
}

.video-thumbnail {
    position: relative;
}

.video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn img {
    width: 40px;
    height: 40px;
}

.video-player {
    position: absolute;
    inset: 0;
    background: #000;
}

.video-player iframe {
    border: 0;
}

.intro-shape {
    pointer-events: none;
}

/* Reviews / Testimonials */
.testimonials {
    position: relative;
    padding: 80px 0 64px;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .testimonials-header {
        text-align: left;
    }
}

.testimonials-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.testimonials-title {
    color: #fff !important;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

.review {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: rgba(102, 126, 234, 0.2);
    font-family: Georgia, serif;
    margin-bottom: -0.5rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.review-rating img {
    width: 18px;
    height: 18px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(102, 126, 234, 0.2);
}

.review-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info {
    text-align: left;
}

.review-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.review-author-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0 0;
}

/* Swiper */
.swiper {
    width: 100%;
    padding-bottom: 4rem;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

/* Footer */
.footer-modern {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding-top: 50px;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-column {
    text-align: left;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #a8b2d1;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.footer-description {
    color: #a8b2d1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a8b2d1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.newsletter-text {
    color: #a8b2d1;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #a8b2d1;
}

.newsletter-input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

.footer-contact,
.footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact p,
.footer-contact-simple p {
    color: #a8b2d1;
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i,
.footer-contact-simple i {
    color: #667eea;
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #a8b2d1;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #a8b2d1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #667eea;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.85rem;
    color: #ffc107;
    line-height: 1.6;
}

.footer-disclaimer strong {
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: .75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.social-icons a:hover {
    background: var(--primary);
}

.social-icons a:hover svg path {
    fill: #fff;
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

/* Call to action */
.bg-theme-light\/50 {
    background: rgba(249, 250, 251, 0.5);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    color: var(--text);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.h2 {
    font-size: 1.875rem;
    font-weight: 700;
}

.h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

@media (min-width: 1024px) {
    h2 {
        font-size: 2.25rem;
    }

    .h2 {
        font-size: 2.25rem;
    }
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

ul {
    padding-left: 1.25rem;
}

/* Text colors */
.text-dark {
    color: var(--text);
}

.text-xl {
    font-size: 1.25rem;
}

/* Extra helpers */
.max-w-\[1440px\] {
    max-width: 1440px;
}

.max-w-\[30\%\] {
    max-width: 30%;
}

.-top-28 {
    top: -7rem;
}

.right-0 {
    right: 0;
}

.left-0 {
    left: 0;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.bottom-6 {
    bottom: 1.5rem;
}

.left-1\/2 {
    left: 50%;
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.h-4 {
    height: 1rem;
}

.h-6 {
    height: 1.5rem;
}

.h-full {
    height: 100%;
}

.w-4 {
    width: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.w-\[30px\] {
    width: 30px;
}

.fill-current {
    fill: currentColor;
}

.inline-flex {
    display: inline-flex;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-white {
    background-color: #fff;
}

.py-\[2\.5px\] {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
}

.text-\[12px\] {
    font-size: 12px;
}

.uppercase {
    text-transform: uppercase;
}

.text-black {
    color: #000;
}

.px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
}

.pb-\[75px\] {
    padding-bottom: 75px;
}

.pt-\[52px\] {
    padding-top: 52px;
}

.objec-contain {
    object-fit: contain;
}

/* Show/hide utility classes for breakpoint indicator */
.block {
    display: block;
}

@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }
}

@media (min-width: 1280px) {
    .xl\:block {
        display: block;
    }
}

@media (min-width: 1536px) {
    .\32xl\:block {
        display: block;
    }
}

/* Mobile first media query ordering */
@media (max-width: 639px) {
    .sm\:hidden {
        display: block;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .md\:hidden {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .lg\:hidden {
        display: block;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .xl\:hidden {
        display: block;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    .\32xl\:hidden {
        display: block;
    }
}

/* ========== Page Header ========== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 3rem;
    color: white;
    margin-top: 76px;
}

.page-title {
    font-family: inherit;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.15;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.92);
    opacity: 1;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    max-width: 60ch;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
}

/* ========== Legal Content ========== */
.legal-content {
    padding: 4rem 0;
    background: #f9fafb;
}

.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    line-height: 1.7;
}

.legal-document .lead {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-document h2 {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.legal-document h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.legal-document h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-document p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
    color: #4b5563;
}

.legal-document ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-document a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-document a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.legal-document strong {
    color: #111827;
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.legal-footer p {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

/* ========== Cookie Table ========== */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.9rem;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: #f9fafb;
}

@media (max-width: 768px) {
    .cookie-table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ========== Cookie Controls ========== */
.cookie-controls {
    margin: 2rem 0;
    text-align: center;
}

.cookie-controls .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.cookie-controls .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* ========== Responsive Legal Document ========== */
@media (max-width: 768px) {
    .legal-document {
        padding: 2rem 1.5rem;
    }

    .legal-document h2 {
        font-size: 1.5rem;
    }

    .legal-document h3 {
        font-size: 1.125rem;
    }

    .legal-document .lead {
        font-size: 1rem;
    }
}

/* ========== mx-auto utility ========== */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.lg\:col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

@media (max-width: 1024px) {
    .lg\:col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========== Contact Form Styles ========== */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.mr-2 {
    margin-right: 0.5rem;
}

/* ========== Contact Info Sidebar ========== */
.contact-info-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    color: white;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-info-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-info-content p,
.contact-info-content a {
    margin: 0;
    opacity: 0.95;
    color: white;
    text-decoration: none;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link-contact {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ========== Support Options ========== */
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.support-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.support-card p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.support-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.support-card a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
}