/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007AFF;
    --accent-yellow: #fbbf24;
    --accent-amber: #f59e0b;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-white: #0a0a0a;
    --bg-light: #151515;
    --border-color: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0a0a0a;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-container {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    height: 64px;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
    text-decoration: none;
    height: 100%;
}

.logo a:hover {
    opacity: 0.7;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0;
    align-items: center;
    flex: 0;
    justify-content: flex-start;
    margin: 0 2rem 0 1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.2s;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-align: left;
    justify-content: flex-start;
}

.nav-link:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.1);
}

.arrow {
    font-size: 0.625rem;
    opacity: 0.6;
    transition: transform 0.2s, opacity 0.2s;
    margin-top: 2px;
}

.nav-item:hover .arrow {
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-top: 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.625rem 0.875rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: background 0.15s;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary-header {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
}

.btn-primary-header:hover {
    transform: translateY(-2px);
}

.btn-primary-header .phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: var(--accent-yellow);
}

.btn-primary-header .phone-icon svg {
    width: 14px;
    height: 14px;
}

.btn-secondary-header {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary-header:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    margin-top: 0;
    padding-top: 12rem;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.1);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title strong {
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary-large, .btn-secondary-large {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary-large {
    background: var(--text-dark);
    color: var(--bg-white);
}

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

.btn-secondary-large {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary-large:hover {
    background: var(--bg-light);
}

/* Image Grid Section */
.image-grid-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.image-grid-section .container {
    max-width: 90%;
    padding: 0;
    width: 90%;
    margin: 0 auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.grid-item {
    position: relative;
}

.grid-image {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    position: relative;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

/* Before/After Slider */
.before-after-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.before-after-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
}

.before-after-wrapper:active {
    cursor: grabbing;
}

.before-after-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.before-img {
    z-index: 1;
}

.after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    clip-path: inset(0 0 0 0);
}

.after-img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff;
    z-index: 3;
    cursor: grab;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #000000;
}

.slider-button svg {
    width: 20px;
    height: 20px;
}

.grid-content {
    position: absolute;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.grid-content * {
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.grid-category {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.grid-item.top-overlay .grid-content {
    top: 0;
    justify-content: flex-start;
}

.grid-item.bottom-overlay .grid-content {
    bottom: 0;
    justify-content: flex-end;
}

/* Gradient overlays based on text position */
.grid-item.top-overlay .grid-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 4;
    border-radius: 12px;
    pointer-events: none;
}

.grid-item.bottom-overlay .grid-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 4;
    border-radius: 12px;
    pointer-events: none;
}

.grid-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.grid-description {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.grid-button {
    display: none;
    padding: 0.625rem 1.25rem;
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    align-self: center;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.grid-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.grid-button-outline {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--bg-white);
    text-decoration: none;
    border: 1px solid var(--bg-white);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    align-self: center;
}

.grid-button-outline:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.grid-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Creative Process Cards Section */
.creative-process-cards-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.creative-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.creative-card {
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.creative-card:nth-child(1) {
    min-height: 420px;
    height: 420px;
}

.creative-card:nth-child(2) {
    min-height: 200px;
    height: 200px;
}

.creative-card:nth-child(3) {
    min-height: 200px;
    height: 200px;
    margin-top: auto;
}

.creative-card:nth-child(4) {
    min-height: 620px;
    height: 620px;
}

.creative-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.creative-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.creative-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 0;
    flex: 1;
}

.creative-card-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 1.25rem;
    opacity: 0.8;
}

.card-blue {
    background: #e8f0fe;
}

.card-green {
    background: #e6f4ea;
}

.card-pink {
    background: #fce8e6;
}

.card-yellow {
    background: #fef7e0;
}

/* Responsive adjustments for creative cards */
@media (max-width: 768px) {
    .creative-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .creative-card {
        min-height: auto;
    }
}

/* Bento Box Section */
.bento-box-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.bento-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bento-logo {
    margin-bottom: 2rem;
}

.bento-logo-image {
    height: 80px;
    width: auto;
}

.bento-headline {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bento-body-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.bento-body-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.bento-body-text p:last-child {
    margin-bottom: 0;
}

.bento-body-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-card {
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.bento-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.bento-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
}

.bento-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

.bento-card-image {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.bento-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 280px;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
}

/* Bento Card Colors */
.bento-powder-blue {
    background: #e0f2fe;
}

.bento-sage-green {
    background: #ecfdf5;
}

.bento-warm-cream {
    background: #fef9e7;
}

.bento-blush-pink {
    background: #fdf2f8;
}

/* Responsive adjustments for bento box */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-headline {
        font-size: 2.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Use Cases Section */
.use-cases {
    background: var(--bg-light);
    padding: 3rem 0 4rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.use-case-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: center;
}

.use-case-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Features Section */
.services-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.services-logo-image {
    height: 80px;
    width: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.why-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Components Section */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.component-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
}

.component-card:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Solutions Section */
.solutions {
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Enterprise Section */
/* Pricing Section */
.pricing-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.pricing-tab:hover {
    transform: translateY(-2px);
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.pricing-tab.active {
    background: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-popular {
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pricing-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.pricing-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 0.75rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 1.8rem;
}

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

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0.25rem;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    width: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    display: inline-block;
    text-align: left;
}

.pricing-button {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    margin-top: auto;
    white-space: nowrap;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

.pricing-button-primary {
    background: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

.pricing-button-primary:hover {
    transform: translateY(-2px);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-cta-button {
    display: inline-block;
    text-align: center;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s;
    background: var(--text-dark);
    color: var(--bg-white);
    border: 2px solid var(--text-dark);
}

.pricing-cta-button:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Pricing Section Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-tabs {
        gap: 0.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    
    .pricing-tab {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        min-width: 140px;
        text-align: center;
        flex: 1;
        max-width: 200px;
        white-space: nowrap;
        font-weight: 600;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        border-width: 2px;
        min-height: 44px; /* Better touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .pricing-tab.active {
        background: var(--text-dark);
        color: var(--bg-white);
        border-color: var(--text-dark);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .pricing-tab:not(.active) {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--text-light);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
}

/* Image Gallery Section */
.image-gallery-section {
    background: var(--bg-white);
    padding: 0;
    width: 100%;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.gallery-image-item {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-image-item:hover img {
    transform: scale(1.05);
}

/* Image Gallery Grid Section */
.image-gallery-grid-section {
    background: var(--bg-white);
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.gallery-grid-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
}

.gallery-grid-container .gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.image-gallery-grid-section .gallery-image-item {
    aspect-ratio: 1 / 1;
}

/* Image Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-row,
    .gallery-grid-container .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-row,
    .gallery-grid-container .gallery-row {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats {
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.contact-info {
    text-align: center;
    margin: 2rem 0 3rem;
}

.contact-phone,
.contact-email {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: 500;
}

.contact-phone a,
.contact-email a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-phone {
    margin-bottom: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 4rem auto 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

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

.form-group select {
    cursor: pointer;
    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='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--text-dark);
    color: var(--bg-white);
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.form-submit-button:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.form-submit-button:active {
    transform: translateY(0);
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
/* Team Section */
.team-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-card {
    text-align: center;
    transition: all 0.3s;
}

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

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: all 0.3s;
}

.team-card:hover .team-image {
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    background: var(--bg-white);
    text-align: center;
    padding: 6rem 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 3000;
    overflow-y: auto;
}

.gallery-modal.active {
    display: block;
}

.gallery-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 3001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-header {
    display: none;
}

.gallery-grid-container {
    width: 100%;
    min-height: 100%;
    padding: 50px;
    box-sizing: border-box;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.gallery-grid-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover {
    transform: scale(1.02);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 4000;
    overflow: hidden;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 4001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 4001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Responsive Design */
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #000000;
    font-size: 1.5rem;
    margin-left: auto;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 999;
    padding: 1rem;
    margin: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-link {
    display: block;
    padding: 1rem;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.mobile-nav .nav-link:last-child {
    border-bottom: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Header Mobile */
    .header {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        border-radius: 12px;
    }

    .header-container {
        padding: 0 1rem;
        height: 56px;
        gap: 1rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .hero-background-images {
        grid-template-columns: 1fr;
    }

    .hero-bg-image:first-child,
    .hero-bg-image:last-child {
        display: none;
    }

    .hero-bg-image:nth-child(2) {
        display: block;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Section Spacing Mobile */
    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Image Grid Mobile */
    .image-grid-section .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid-item {
        aspect-ratio: 4 / 3;
    }

    .grid-content {
        padding: 1.5rem;
    }

    .grid-title {
        font-size: 1.25rem;
    }

    .grid-category {
        font-size: 0.875rem;
    }

    .grid-description {
        font-size: 0.875rem;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    /* Why Choose Grid Mobile */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem;
    }

    /* Use Cases Grid Mobile */
    .use-cases {
        padding: 2rem 0 3rem 0;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .use-case-card {
        padding: 0.75rem 1rem;
    }

    .use-case-card h3 {
        font-size: 0.875rem;
    }

    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0 0.4rem 2rem;
        min-height: 1.6rem;
    }

    /* FAQ Mobile */
    .faq-container {
        gap: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    /* Contact Form Mobile */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

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

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-submit-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Gallery Mobile */
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-container .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Buttons Mobile */
    .hero-actions, .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Services Logo Mobile */
    .services-logo-image {
        height: 60px;
    }

    /* Image Gallery Section Mobile */
    .image-gallery-section {
        padding: 0;
    }

    .image-gallery-grid-section {
        padding: 0;
    }

    /* Before/After Slider Mobile */
    .before-after-wrapper {
        cursor: default;
        touch-action: pan-y; /* Allow vertical scrolling, prevent horizontal drag */
    }

    .before-after-wrapper:active {
        cursor: default;
    }

    .slider-handle {
        cursor: grab;
        touch-action: none; /* Allow dragging the handle */
    }

    .slider-handle:active {
        cursor: grabbing;
    }

    .slider-button {
        width: 44px;
        height: 44px;
        cursor: grab;
        touch-action: none; /* Allow dragging the button */
    }

    .slider-button:active {
        cursor: grabbing;
    }

    .slider-button svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Extra Small Mobile */
    .header {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        border-radius: 8px;
    }

    .header-container {
        padding: 0 0.75rem;
        height: 52px;
    }

    .logo-image {
        height: 36px;
    }

    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

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

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .btn-primary-header {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}
