/* Benbo.se - Django + HTMX Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --neutral-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-medium: 0 15px 35px rgba(31, 38, 135, 0.3);
    --shadow-strong: 0 25px 50px rgba(31, 38, 135, 0.4);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --surface: #ffffff;
    --background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    box-shadow: var(--shadow-soft);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background-image: url('/static/images/logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    transform: translateY(-2px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 90px;
}

/* Hero Section */
.hero {
    background: var(--background);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.3;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-description {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 200px;
    background-image: url('/static/images/hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    margin: 0 auto 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-gradient) 20%,
        var(--accent-gradient) 50%,
        var(--primary-gradient) 80%,
        transparent 100%
    );
    position: relative;
    margin: 40px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
}

.section-divider.tech {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.3) 30%,
        rgba(102, 126, 234, 0.8) 50%,
        rgba(102, 126, 234, 0.3) 70%,
        transparent 100%
    );
}

.section-divider.tech::before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Pricing Section - 3 Cards */
.pricing-section {
    padding: 100px 40px;
    background: var(--surface);
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular {
    border: 3px solid #667eea;
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-card:not(.popular) .pricing-badge {
    visibility: hidden;
}

.pricing-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-vat {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-btn.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-soft);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.pricing-btn.secondary {
    background: #f7fafc;
    color: var(--text-primary);
    border: 2px solid #e2e8f0;
}

.pricing-btn.secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

/* Mobile pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-section {
        padding: 60px 20px;
    }
}

/* Services Section */
.services {
    padding: 120px 40px;
    background: var(--surface);
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 80px;
    color: var(--text-primary);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.95);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex: 0 0 220px;
    border-radius: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    filter: drop-shadow(var(--shadow-soft));
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.service-price {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    padding: 12px 20px;
    background: var(--neutral-gradient);
    border-radius: 25px;
    display: inline-block;
    margin-top: 8px;
    box-shadow: var(--shadow-soft);
}

/* Page Layout */
.page {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.page-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Services List Page */
.services-list {
    text-align: center;
    margin-bottom: 80px;
}

.services-list h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.service-item {
    margin-bottom: 32px;
    font-size: 18px;
    color: var(--text-secondary);
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
}

.service-item strong {
    font-weight: 700;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    text-align: center;
    margin-bottom: 80px;
}

.about-vision {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 80px;
    font-style: italic;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.member-photo {
    width: 300px;
    height: 239px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-info p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-section .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 18px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

.form-input.error,
.form-textarea.error {
    border-color: #f5576c;
}

.error-message {
    color: #f5576c;
    font-size: 14px;
    margin-top: 4px;
}

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

.submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* HTMX Loading indicator */
.htmx-request .submit-btn span::after {
    content: ' ...';
}

/* Contact Success */
.contact-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-success h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-success p {
    color: var(--text-secondary);
    font-size: 16px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    display: block;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
    transform: translateX(8px);
}

.footer-brand {
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA Button */
.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    color: white;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

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

    .nav-menu {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-medium);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        border-radius: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-image {
        height: 120px;
        border-radius: 16px;
    }

    .main-offer-section {
        padding: 60px 20px;
    }

    .main-offer-card {
        padding: 30px;
    }

    .services {
        padding: 80px 20px;
    }

    .service-card {
        flex-direction: column !important;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .service-card:nth-child(even) {
        flex-direction: column !important;
    }

    .service-icon {
        flex: none;
        width: 200px;
        margin: 0 auto;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .member-photo {
        width: 250px;
        height: 199px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .page {
        padding: 60px 20px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 24px;
    }

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