:root {
  --bg: #020617;
  --bg-alt: #050816;
  --surface: rgba(15,23,42,0.9);
  /* orange + navy gradient */
  --accent: #FD8112;   /* primary orange */
  --accent-2: #0085CA; /* blue/navy accent */
  --accent-3: #F97316; /* secondary orange */
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-soft: rgba(148,163,184,0.4);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --shadow-soft: 0 24px 60px rgba(15,23,42,0.9);
  --transition-fast: 180ms ease-out;
  --transition-med: 260ms ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #000 100%);
    color: var(--text);
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.gradient-text {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary {
    background: radial-gradient(circle at 0 0, var(--accent), var(--accent-2) 55%, #022c44 100%);
    color: #020617;
    box-shadow: 0 0 26px rgba(253, 129, 18, 0.7);
}

.rgb-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent), var(--accent-2));
    background-size: 200% 100%;
    animation: rgbFlow 10s linear infinite;
    z-index: 50;
    pointer-events: none;
}
body {
    overflow-x: hidden;
}

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

section {
    padding: 4.5rem 0;
    position: relative;
}

/* Loading screen */

#af-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #020617 0, #000 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.af-loader-inner {
    text-align: center;
    max-width: 320px;
}

.af-loader-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-inline: auto;
    margin-bottom: 1rem;
    background: conic-gradient(from 0deg, #22d3ee, #a855f7, #f97316, #22c55e, #22d3ee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.9);
    animation: loaderSpin 1.2s linear infinite;
}

.af-loader-text {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.af-loader-bar {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

.af-loader-bar-fill {
    width: 40%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22d3ee, #a855f7, #f97316, #22d3ee);
    background-size: 200% 100%;
    animation: loaderBar 1.4s ease-in-out infinite;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-100%);
        background-position: 0 0;
    }

    100% {
        transform: translateX(200%);
        background-position: 200% 0;
    }
}

/* RGB top strip */

.rgb-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, #22d3ee, #a855f7, #f97316, #22c55e, #22d3ee);
    background-size: 200% 100%;
    animation: rgbFlow 10s linear infinite;
    z-index: 50;
    pointer-events: none;
}

@keyframes rgbFlow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Pills, buttons, chips */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.85);
    color: var(--muted);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.9);
}

.pill-tag {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.gradient-text {
    background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.2rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.btn-primary {
    background: radial-gradient(circle at 0 0, var(--accent), #0ea5e9 45%, #0369a1 100%);
    color: #020617;
    box-shadow: 0 0 26px rgba(34, 211, 238, 0.7);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.btn-outline {
    border-color: var(--border-soft);
    color: var(--text);
    background: rgba(15, 23, 42, 0.96);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    border-color: var(--accent-2);
    box-shadow: 0 0 26px rgba(168, 85, 247, 0.7);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.chip {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    color: var(--muted);
    background: rgba(15, 23, 42, 0.85);
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.75), transparent);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle at 0 0, var(--accent), var(--accent-2));
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.7);
}

.logo-text-main {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo-text-sub {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 0.88rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.1rem;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width var(--transition-med);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    color: var(--muted);
    text-decoration: none;
}

.nav-phone i {
    color: var(--accent);
}

.nav-menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.95);
    color: var(--text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile menu */

.mobile-menu {
    display: none;
    position: fixed;
    inset: 56px 0 auto 0;
    padding: 0.9rem 0 1.1rem;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    z-index: 30;
}

.mobile-menu-inner {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
    display: grid;
    gap: 0.9rem;
    font-size: 0.92rem;
}

.mobile-menu a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.25rem 0;
}

/* Hero */

.hero {
    padding-top: 3.2rem;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 3rem;
    align-items: center;
}

.hero-heading {
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-top: 1.2rem;
    margin-bottom: 0.9rem;
}

.hero-sub {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 0.4rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Futuristic Project Flow card */

.hero-flow-card {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.1), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.14), transparent 55%),
        rgba(15, 23, 42, 0.98);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem 1.5rem 1.2rem;
    position: relative;
    overflow: hidden;
}

.hero-flow-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.hero-flow-label {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-flow-title {
    font-size: 0.98rem;
    color: var(--text);
}

.hero-flow-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.76rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.7);
    background: rgba(6, 95, 70, 0.2);
    color: #bbf7d0;
}

.hero-flow-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
    animation: pulse 1.4s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.hero-flow-timeline {
    margin-bottom: 1rem;
    border-left: 1px solid rgba(148, 163, 184, 0.4);
    padding-left: 0.9rem;
    display: grid;
    gap: 0.7rem;
}

.flow-step {
    display: flex;
    gap: 0.7rem;
}

.flow-step-node {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #020617;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.7);
    transform: translateX(-1.2rem);
}

.flow-step-body h4 {
    font-size: 0.86rem;
    margin-bottom: 0.1rem;
}

.flow-step-body p {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-flow-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}

.hero-flow-stat-label {
    display: block;
    color: var(--muted);
}

.hero-flow-stat strong {
    font-size: 0.96rem;
}

.hero-flow-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hero-flow-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.99);
}

/* Section headers */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2.4rem;
}

.section-title {
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    margin-top: 0.8rem;
}

.section-sub {
    font-size: 0.94rem;
    color: var(--muted);
    max-width: 30rem;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-card {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 1.3rem 1.25rem 1.1rem;
    transition: transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-med),
        background var(--transition-med);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.9);
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.55);
    background: rgba(15, 23, 42, 0.98);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, var(--accent), var(--accent-2));
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.7);
    margin-bottom: 0.8rem;
}

.service-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
    line-height: 1.65;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.service-tag {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.98);
}

/* Why */

.value-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: stretch;
}

.value-list {
    display: grid;
    gap: 1rem;
}

.value-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
    font-size: 0.9rem;
}

.value-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, var(--accent), var(--accent-2));
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.9);
    margin-top: 0.25rem;
}

.value-item h4 {
    font-size: 0.96rem;
    margin-bottom: 0.2rem;
}

.value-item p {
    color: var(--muted);
    line-height: 1.7;
}

.value-card {
    border-radius: var(--radius-xl);
    padding: 1.4rem 1.4rem 1.1rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.value-badges {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
}

.value-badge {
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.96);
    color: var(--muted);
}

.value-footnote {
    position: relative;
    margin-top: 0.9rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Team */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.team-card {
    border-radius: var(--radius-lg);
    padding: 1.1rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.45);
    transition: transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-med);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 26px rgba(168, 85, 247, 0.7);
    border-color: rgba(168, 85, 247, 0.9);
}

.team-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.team-avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, var(--accent-2), var(--accent));
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.team-meta h4 {
    font-size: 0.94rem;
}

.team-meta span {
    font-size: 0.8rem;
    color: var(--muted);
}

.team-body {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.75rem;
}

.team-tag {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: rgba(209, 213, 219, 0.9);
}

/* Pricing */

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
    gap: 2rem;
    align-items: stretch;
}

.price-card {
    border-radius: var(--radius-xl);
    padding: 1.4rem 1.4rem 1.2rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.price-tagline {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.price-list {
    font-size: 0.85rem;
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
}

.price-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem;
}

.price-bullet {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    margin-top: 0.28rem;
}

.pricing-table {
    margin-top: 0.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.55);
    font-size: 0.8rem;
    overflow: hidden;
}

.pricing-table-header,
.pricing-table-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
}

.pricing-table-header {
    background: rgba(15, 23, 42, 0.98);
    color: rgba(226, 232, 240, 0.9);
}

.pricing-table-row {
    background: rgba(15, 23, 42, 0.94);
    color: rgba(148, 163, 184, 0.9);
    border-top: 1px solid rgba(30, 41, 59, 0.9);
}

.pricing-table-row:nth-child(odd) {
    background: rgba(15, 23, 42, 0.9);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
    gap: 2rem;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.field-group {
    display: grid;
    gap: 0.26rem;
    font-size: 0.84rem;
}

.field-group label {
    color: var(--muted);
}

.field {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.98);
    padding: 0.55rem 0.75rem;
    color: var(--text);
    font-size: 0.86rem;
    outline: none;
    transition: border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.8);
    background: rgba(15, 23, 42, 1);
}

textarea.field {
    min-height: 110px;
    resize: vertical;
}

.contact-meta {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.contact-highlight {
    border-radius: 14px;
    border: 1px dashed rgba(56, 189, 248, 0.8);
    background: rgba(15, 23, 42, 0.96);
    padding: 0.8rem 0.9rem;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.95);
}

/* Footer */

footer {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    padding: 2rem 0 2.4rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

/* Scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width:960px) {

    .hero-grid,
    .services-grid,
    .value-grid,
    .team-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .hero-flow-card {
        margin-top: 1.4rem;
    }
}

@media (max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-menu-toggle {
        display: inline-flex;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    section {
        padding: 3.7rem 0;
    }
}