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

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --font-body: 'Manrope', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sora', 'Manrope', 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .section-tag, .btn {
    font-family: var(--font-display);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
}

.hero-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(169, 196, 255, 0.62);
    background: rgba(12, 24, 45, 0.5);
    border: 1px solid rgba(116, 144, 238, 0.22);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 28px -20px rgba(79, 132, 255, 0.6);
}

.float-icon i {
    font-size: 28px;
    line-height: 1;
}

.float-icon--left-1 {
    left: 4.5%;
    top: 30%;
    animation: heroFloatA 6.8s ease-in-out infinite;
}

.float-icon--left-2 {
    left: 8.5%;
    top: 65%;
    animation: heroFloatB 7.6s ease-in-out infinite 0.6s;
}

.float-icon--right-1 {
    right: 4.5%;
    top: 33%;
    animation: heroFloatB 7.2s ease-in-out infinite;
}

.float-icon--right-2 {
    right: 8%;
    top: 64%;
    animation: heroFloatA 6.6s ease-in-out infinite 0.4s;
}

@keyframes heroFloatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroFloatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 9px 18px;
    background:
        linear-gradient(rgba(8, 17, 37, 0.72), rgba(8, 17, 37, 0.72)) padding-box,
        linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(139, 92, 246, 0.62)) border-box;
    border: 1px solid transparent;
    border-radius: 50px;
    color: #9ec0ff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.2px;
    box-shadow: 0 10px 28px -20px rgba(96, 112, 246, 0.85);
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(34px, 5.1vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 34px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    width: fit-content;
    max-width: 100%;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.cta-buttons .btn {
    width: auto;
    min-width: 220px;
    padding: 15px 26px;
    font-size: 17px;
}

.btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 14px 40px -18px rgba(101, 111, 246, 0.65);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f90ff, #9d68ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(101, 111, 246, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray);
    font-size: 16px;
}

/* Services Section */
.section {
    padding: 120px 0;
    scroll-margin-top: 110px;
}

/* Featured Project Section */
.featured-project {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.project-screenshot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(33, 49, 90, 0.5), rgba(48, 22, 62, 0.45));
    border: 1px solid rgba(120, 148, 214, 0.26);
    box-shadow: 0 18px 60px -24px rgba(52, 116, 240, 0.55);
}

.project-screenshot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 92px;
    height: 92px;
    border-top: 2px solid rgba(95, 147, 255, 0.55);
    border-left: 2px solid rgba(95, 147, 255, 0.55);
    border-top-left-radius: 20px;
    z-index: 2;
}

.project-screenshot::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 92px;
    border-right: 2px solid rgba(95, 147, 255, 0.55);
    border-bottom: 2px solid rgba(95, 147, 255, 0.55);
    border-bottom-right-radius: 20px;
    z-index: 2;
}

.project-status {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 12px;
    background: rgba(16, 28, 51, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #66aaff;
    font-size: 11px;
    font-weight: 600;
}

.screenshot-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.screenshot-placeholder svg {
    color: var(--primary);
    opacity: 0.4;
}

.screenshot-note {
    color: var(--gray);
    font-size: 14px;
    text-align: center;
}

.project-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--light);
}

.project-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    color: var(--light);
    transition: all 0.3s;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-tag svg {
    color: var(--primary);
    flex-shrink: 0;
}

.project-tech h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--light);
}

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

.tech-tag {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* Process, Services, etc */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-tag {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
}

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

.service-card {
    padding: 32px;
    background: linear-gradient(135deg, rgba(10, 25, 45, 0.7), rgba(8, 18, 35, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(17, 38, 68, 0.72), rgba(11, 24, 45, 0.7));
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 6, 23, 0.75);
    border: 2px solid rgba(79, 155, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    color: #eef4ff;
}

.service-icon i {
    font-size: 30px;
    color: #eef4ff;
    line-height: 1;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(28, 20, 24, 0.72), rgba(20, 15, 28, 0.7));
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(16, 18, 44, 0.72), rgba(16, 12, 36, 0.68));
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.service-chips span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.55;
}

/* Tech Stack */
.tech-stack {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.tech-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--gray);
}

.tech-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.95;
}

.brand-icon-img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transform: none;
}

.social-link:hover {
    color: var(--light);
    opacity: 1;
    transform: translateY(-1px);
}

.social-link:hover .brand-icon-img {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.author-role {
    color: var(--gray);
    font-size: 14px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: white;
}

.feature-icon i {
    color: white;
    font-size: 14px;
    line-height: 1;
}

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

.about-placeholder {
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, rgba(19, 40, 74, 0.55), rgba(42, 22, 58, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.about-main-icon {
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background: linear-gradient(135deg, #4f8bff, #9950e3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.about-main-icon svg {
    color: #fff;
}

.about-main-icon i {
    color: #fff;
    font-size: 46px;
    line-height: 1;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #f8fbff;
}

.about-subtitle {
    font-size: 28px;
    color: var(--gray-light);
}

.about-floating-card {
    position: absolute;
    left: -24px;
    bottom: -24px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(13, 22, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 300px;
}

.about-floating-card strong {
    font-size: 22px;
    line-height: 1;
    color: #71a4ff;
}

.about-floating-card span {
    font-size: 11px;
    color: var(--gray-light);
    line-height: 1.35;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Section */
.cta-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    color: var(--primary);
}

.method-icon i {
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
}

.method-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--secondary);
}

.contact-method span {
    color: var(--light);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2dfc80, #1faa4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.15);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@media (max-width: 968px) {
    .about-content,
    .contact-wrapper,
    .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-placeholder { min-height: 320px; }
    .about-title { font-size: 34px; }
    .about-subtitle { font-size: 22px; }
    .about-floating-card {
        position: static;
        margin-top: 18px;
        width: 100%;
        left: auto;
        bottom: auto;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-float-icons {
        display: none;
    }

    .nav-links {
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    nav.nav-open .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        background: rgba(2, 6, 23, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        backdrop-filter: blur(12px);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        box-shadow: 0 18px 40px -20px rgba(2, 6, 23, 0.85);
    }

    nav.nav-open .nav-links a {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(8px);
        animation: navItemIn 0.24s ease forwards;
    }

    nav.nav-open .nav-links li:nth-child(1) a { animation-delay: 0.04s; }
    nav.nav-open .nav-links li:nth-child(2) a { animation-delay: 0.08s; }
    nav.nav-open .nav-links li:nth-child(3) a { animation-delay: 0.12s; }

    @keyframes navItemIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav.nav-open .nav-links a:hover {
        background: rgba(59, 130, 246, 0.12);
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .btn { font-size: 17px; }
    
    .process-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: calc(84px + env(safe-area-inset-bottom));
        right: 14px;
        width: 55px;
        height: 55px;
    }

    .hero,
    .cta-section {
        padding-bottom: 92px;
    }

    .about-features {
        padding-left: 6px;
    }

    .about-placeholder {
        text-align: center;
        padding: 24px 20px;
    }

    .about-main-icon {
        width: 86px;
        height: 86px;
    }

    .about-main-icon svg {
        width: 42px;
        height: 42px;
    }

    .footer-bottom {
        align-items: center;
    }
}

@media (max-width: 1200px) {
    .float-icon--left-1 { left: 2%; top: 28%; }
    .float-icon--right-1 { right: 2%; top: 30%; }
    .float-icon--left-2 { left: 4%; top: 70%; }
    .float-icon--right-2 { right: 4%; top: 69%; }
}

@media (max-width: 1024px) {
    .float-icon {
        width: 50px;
        height: 50px;
    }

    .float-icon i {
        font-size: 24px;
    }

    .float-icon--left-2 {
        left: 3%;
        top: 61%;
    }

    .float-icon--right-2 {
        right: 3%;
        top: 60%;
    }
}




