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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 146, 153, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #639299;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #639299;
}

/* Buttons */
.btn-primary {
    background: #639299;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #527a80;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 146, 153, 0.2);
}

.btn-secondary {
    background: white;
    color: #639299;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #639299;
    transition: all 0.3s;
    display: inline-block;
}

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

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

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background-color: #eef4f5;
    background-image: url('assets/web-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #639299;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.gradient-text {
    color: #639299;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c9a;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f7f9fa;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8ecef;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 146, 153, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-description {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Clickable Service Card */
.service-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
}

.service-card-cta {
    color: #639299;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-card-link:hover .service-card-cta {
    gap: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: #f7f9fa;
    border: 1px solid #e8ecef;
    color: #639299;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Tech Stack Section */
.tech-section {
    padding: 100px 0;
    background: white;
}

.tech-scroll-section {
    margin-top: 20px;
}

.tech-scroll-heading {
    font-size: 20px;
    font-weight: 600;
    color: #639299;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.tech-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.tech-scroll {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-scroll:hover {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .tech-scroll {
        animation: none;
    }
}

.tech-item {
    background: #f7f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #e8ecef;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tech-item:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 4px 12px rgba(99, 146, 153, 0.1);
}

.tech-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-cta {
    margin-top: 32px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: #f7f9fa;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8ecef;
}

.stat-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #639299;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c9a;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: #f7f9fa;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 146, 153, 0.12);
}

.pricing-card-featured {
    background: white;
    border: 2px solid #639299;
    box-shadow: 0 8px 24px rgba(99, 146, 153, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #639299;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    border-radius: 14px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 16px;
    color: #7f8c9a;
    margin-bottom: 24px;
}

.pricing-price strong {
    font-size: 32px;
    font-weight: 700;
    color: #639299;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #639299;
    font-weight: 700;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #7f8c9a;
    font-size: 15px;
}

.pricing-note a {
    color: #639299;
    font-weight: 600;
}

/* Checklist Lead Magnet */
.checklist-section {
    padding: 0 0 100px;
    background: white;
}

.checklist-box {
    background: #f7f9fa;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.checklist-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.checklist-text p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.checklist-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.checklist-form input[type="email"] {
    flex: 1;
    min-width: 200px;
}

/* Forms */
.contact-wrap {
    max-width: 640px;
    margin: 48px auto 0;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

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

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.checklist-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d5dde2;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #2c3e50;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.checklist-form input[type="email"]:focus {
    outline: 2px solid #639299;
    outline-offset: 1px;
    border-color: #639299;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.checklist-form .btn-primary {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.contact-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #7f8c9a;
}

.contact-alt a {
    color: #639299;
    font-weight: 600;
}

/* Honeypot: visually gone, still in the DOM for bots to fill */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #639299 0%, #527a80 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: #639299;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    color: #95a5a6;
    font-size: 15px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #639299;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
    font-size: 15px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .checklist-box {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

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

    .contact-form {
        padding: 28px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 16px;
    }
}
