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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #007AFF;
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-top: -2px;
}



.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-tagline {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    text-align: center;
    max-width: 300px;
    line-height: 1.3;
}

.header-cta {
    margin-left: auto;
}

.header-cta .btn--telegram {
    background: #007AFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-cta .btn--telegram:hover {
    background: #0056CC;
    transform: translateY(-1px);
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}


.btn--telegram {
    background: #0088cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--telegram:hover {
    background: #0077b3;
    transform: translateY(-2px);
}

.hero-main {
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #007AFF, #0056CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #007AFF;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    max-width: 120px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--primary {
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.btn--secondary {
    background: transparent;
    color: #007AFF;
    border: 2px solid #007AFF;
}

.btn--secondary:hover {
    background: #007AFF;
    color: white;
}

.btn--large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #1a1a1a;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007AFF;
    font-weight: 600;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: #f8f9ff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 240px;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Portfolio Screenshots */
.portfolio-screenshot {
    width: 100%;
    height: 240px;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.browser-header {
    background: #f1f3f4;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e8eaed;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.browser-url {
    font-size: 12px;
    color: #5f6368;
    font-family: 'Monaco', 'Menlo', monospace;
    flex: 1;
}

.site-content {
    flex: 1;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* MacBro Site Styles */
.portfolio-screenshot.macbro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.macbro .site-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.macbro .logo {
    font-size: 24px;
    font-weight: 700;
}

.macbro .site-nav {
    display: flex;
    gap: 20px;
}

.macbro .site-nav span {
    font-size: 14px;
    opacity: 0.9;
}

.macbro .hero-section {
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.macbro h2 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.macbro .cta-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

/* iStore Site Styles */
.portfolio-screenshot.istore {
    background: #f5f5f7;
}

.istore .site-header.apple-style {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.istore .apple-logo {
    font-size: 20px;
    font-weight: 300;
}

.istore .store-info {
    font-size: 14px;
    color: #666;
}

.istore .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
}

.istore .product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Apple Parts Site Styles */
.portfolio-screenshot.appleparts {
    background: #f8f9fa;
}

.appleparts .site-header {
    padding: 16px 20px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.appleparts .logo {
    font-size: 20px;
    font-weight: 600;
    color: #007AFF;
}

.appleparts .search-bar {
    background: #f1f3f4;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    width: 200px;
}

.appleparts .categories {
    display: flex;
    gap: 16px;
    padding: 20px;
    justify-content: center;
}

.appleparts .category {
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Real Case Screenshot */
.portfolio-screenshot.real-case {
    background: #ffffff;
}

.real-screenshot {
    background: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-content {
    padding: 32px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.portfolio-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-results {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* BI Dashboards Section */
.dashboards {
    padding: 120px 0;
    background: #ffffff;
}

.dashboards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.dashboard-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-image {
    height: 280px;
    background: linear-gradient(135deg, #f8f9ff, #e3f2fd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dashboard-screenshot {
    width: 100%;
    height: 280px;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screenshot-browser {
    background: #f0f0f0;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.browser-url {
    font-size: 12px;
    color: #666;
    font-family: 'Monaco', 'Consolas', monospace;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    flex-grow: 1;
}

.dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.dashboard-content {
    padding: 32px;
}

.dashboard-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.dashboard-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.dashboard-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature {
    background: #f0f7ff;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* SEO Positions Section */
.positions {
    padding: 120px 0;
    background: #f8f9ff;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.position-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.position-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.position-image {
    height: 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.position-screenshot {
    width: 100%;
    height: 260px;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screenshot-toolbar {
    background: #f0f0f0;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.toolbar-browser {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.browser-dots .browser-url {
    font-size: 12px;
    color: #666;
    font-family: 'Monaco', 'Consolas', monospace;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: auto;
}

.position-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.position-content {
    padding: 32px;
}

.position-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.position-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-status {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.success {
    background: #e8f5e8;
    color: #2d7d32;
}

.status-badge.good {
    background: #fff3e0;
    color: #f57c00;
}

.status-badge.info {
    background: #e3f2fd;
    color: #1976d2;
}

.keyword-volume {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Screenshot Popup Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9ff;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #ff5f56;
    color: #ffffff;
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
    overflow: hidden;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
}

/* Screenshot Hover Effects */
.portfolio-screenshot,
.dashboard-screenshot,
.position-screenshot {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-screenshot:hover,
.dashboard-screenshot:hover,
.position-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 20px;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-close {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }
    
    .modal-image {
        max-height: 75vh;
    }
}

.result {
    background: #f0f7ff;
    color: #007AFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: #ffffff;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8f9ff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.about-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #007AFF;
    display: block;
    line-height: 1;
}

.about-stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-avatars {
    display: flex;
    gap: 20px;
    align-items: center;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    position: relative;
}

.avatar:nth-child(2) {
    width: 100px;
    height: 100px;
    margin: 0 20px;
}

.avatar:nth-child(3) {
    width: 80px;
    height: 80px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #2a2a2a;
    color: #ffffff;
}

/* Dark CTA Block */
.contact-cta-block {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-cta {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
}

.cta-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.cta-profile-text h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

.cta-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.cta-btn i {
    font-size: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-logo .logo-text {
    color: #007AFF;
}

.footer-logo .logo-subtitle {
    color: #ccc;
}

.footer-description {
    color: #ccc;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007AFF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Mobile CTA adjustments */
    .contact-hero-cta {
        padding: 24px;
    }
    
    .cta-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-main-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .header-content {
        gap: 16px;
    }

    .header-tagline {
        font-size: 12px;
        max-width: 200px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn--large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }
    
    /* Mobile CTA block */
    .contact-hero-cta {
        padding: 20px;
    }
    
    .cta-profile {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cta-main-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .services-grid,
    .portfolio-grid,
    .dashboards-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .portfolio-content {
        padding: 24px;
    }
}

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

.hero-content,
.service-card,
.portfolio-item,
.process-step,
.about-content,
.contact-content {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
