/* BuildFlow global styles */
:root {
    color-scheme: dark;
    font-family: Inter, Arial, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #2563eb 0%, #0f172a 45%);
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 32px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.brand {
    font-weight: 700;
    letter-spacing: 0.08em;
}
nav {
    display: flex;
    gap: 24px;
}
nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
}
nav a:hover {
    color: #93c5fd;
}
.button,
.button-secondary,
.btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease;
}
.button,
.btn,
.btn-primary {
    background: #22c55e;
    color: #0f172a;
    font-weight: 700;
}
.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}
.button:hover,
.button-secondary:hover,
.btn:hover,
.btn-primary:hover {
    transform: translateY(-2px);
}
.hero-card,
.service-card,
.pricing-card,
.post {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
}
.hero-card {
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
    padding: 56px 48px;
    display: grid;
    gap: 32px;
}
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-title {
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    line-height: 1.02;
    max-width: 740px;
}
.hero-copy {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 760px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 60px 20px;
}
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.stat-card h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.stat-card p {
    color: #555;
}
.service-card h3,
.pricing-card h2,
.post h2 {
    margin-top: 0;
}
.section-title {
    margin: 64px 0 24px;
    font-size: 2rem;
    font-weight: 700;
}
.section-label {
    text-transform: uppercase;
    color: #93c5fd;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.feature-grid,
.project-grid,
.process-grid,
.process-steps,
.testimonial-grid,
.faq-list {
    display: grid;
    gap: 18px;
}
.feature-grid,
.project-grid,
.project-grid,
.testimonial-grid,
.process-grid,
.case-grid,
.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.process-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.process-card {
    padding: 28px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
}
.process-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.process-card p {
    color: #cbd5e1;
    line-height: 1.75;
}
.process h2 {
    margin-bottom: 18px;
}
.feature-card,
.project-card,
.testimonial-card,
.contact-card,
.faq-item {
    padding: 24px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
}
.project-tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(147, 197, 253, 0.12);
    color: #93c5fd;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.project-card h3,
.feature-card h3,
.process-step h3,
.faq-item h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}
.process-step {
    padding: 28px;
    display: grid;
    gap: 16px;
}
.step-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
}
.testimonial-card p {
    color: #cbd5e1;
    margin-bottom: 18px;
}
.testimonial-card strong {
    color: #f8fafc;
}
.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 14px 0;
}
.contact-card {
    display: grid;
    gap: 20px;
}
.contact-card a.button {
    width: fit-content;
}
.site-footer {
    background: rgba(15, 23, 42, 0.96);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    margin-top: 64px;
    padding: 40px 0;
}
.footer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr auto;
    align-items: center;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fff;
}
@media (max-width: 720px) {
    .container {
        padding: 32px 20px;
    }
    .hero-card {
        padding: 36px 24px;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


.project-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.project-link:hover h3 {
    color: #93c5fd;
}

.project-page .project-description,
.project-page .project-features,
.project-page .gallery-section,
.project-page .project-cta {
    margin-top: 40px;
}
.project-hero-copy {
    display: grid;
    gap: 24px;
}
.gallery-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery-item {
    min-height: 180px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 18px;
    color: #cbd5e1;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.button-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.project-hero {
    padding: 48px;
}

.stats {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 40px;
}
.stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}
.stat h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.stat p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* stat-card variant */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    color: #cbd5e1;
}
.stat-card h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #f8fafc;
}
.stat-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Featured projects styles */
.featured-projects {
    padding: 60px 20px;
    text-align: center;
}

.case-studies {
  padding: 70px 20px;
  text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.why-us{
    padding:80px 20px;
    text-align:center;
}

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

.why-card{
    background:white;
    padding:30px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
}

.team {
    padding: 70px 20px;
    text-align: center;
}

.team-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    padding: 32px;
    color: #0f172a;
    text-align: center;
}

.team-card img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 24px;
}

.team-card h2 {
    margin: 0 0 10px;
}

.team-card p {
    color: #475569;
    line-height: 1.75;
    margin: 12px 0;
}

.technologies {
    padding: 70px 20px;
    text-align: center;
}

.technologies ul {
    display: inline-grid;
    gap: 12px;
    margin: 24px auto 0;
    padding: 0;
    list-style: none;
    max-width: 520px;
    text-align: left;
}

.technologies li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    color: #e2e8f0;
}

.technologies li:before {
    content: "✓";
    margin-right: 10px;
    color: #22c55e;
}

.release-notes {
    padding: 70px 20px;
    text-align: center;
}

.release-notes ul {
    display: inline-grid;
    gap: 12px;
    margin: 24px auto 0;
    padding: 0;
    list-style: none;
    max-width: 600px;
    text-align: left;
}

.release-notes li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    padding: 16px 20px;
    color: #e2e8f0;
}

.release-notes li:before {
    content: "✓";
    margin-right: 10px;
    color: #22c55e;
}

.release-notes .changelog-group {
    margin-top: 30px;
}

.release-notes .changelog-group h3 {
    margin-bottom: 18px;
    font-size: 1.3rem;
    color: #f8fafc;
}

.release-notes .changelog-group ul {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.project-card,
.case-card,
.why-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    color: #0f172a;
}

.project-card a,
.case-card a {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
}

.case-card a {
  margin-top: 16px;
}
