/* ========================================
   ApplicAgent — Styles
   Dark, sophisticated, tech-forward design
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1424;
    --bg-card: #141929;
    --bg-card-hover: #1a2035;
    --accent: #00b4d8;
    --accent-dark: #0077b6;
    --accent-glow: rgba(0, 180, 216, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #b0b8c4;
    --text-muted: #6b7280;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 180, 216, 0.2);
    --gradient: linear-gradient(135deg, #00b4d8, #0077b6);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --section-padding: 120px 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--text-primary);
}

img {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    background: var(--accent-glow);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    padding: 8px 20px !important;
    background: var(--gradient);
    border-radius: 6px;
    color: #fff !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=1920&q=80') center center / cover no-repeat;
}

/* Circuit/grid pattern overlay */
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.82) 0%, rgba(10, 14, 26, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding);
    background:
        linear-gradient(180deg, rgba(15, 20, 36, 0.97) 0%, rgba(15, 20, 36, 0.95) 100%),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80') center center / cover no-repeat;
    border-top: 1px solid var(--border);
}

/* About text centered layout */
.about-text-centered {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-centered p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text-centered strong {
    color: var(--accent);
}

/* Process Steps — Audit, Plan, Implement */
.process-steps {
    max-width: 800px;
    margin: 0 auto 64px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s;
}

.process-step:hover {
    border-color: var(--border-accent);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-content strong {
    color: var(--accent);
}

.process-connector {
    width: 2px;
    height: 32px;
    background: var(--gradient);
    margin: 0 auto;
    opacity: 0.4;
}

/* Workflow Banner */
.workflow-banner {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
}

.workflow-banner h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
}

.workflow-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.wf-step {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    color: var(--accent);
    white-space: nowrap;
}

.wf-arrow {
    color: var(--accent);
    font-size: 1.3rem;
    opacity: 0.6;
}

.workflow-banner > p {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   Comparison Section
   ======================================== */
.comparison {
    padding: var(--section-padding);
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.compare-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.compare-them {
    background: var(--bg-card);
}

.compare-us {
    background: var(--bg-card);
    border-color: var(--border-accent);
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.08);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.compare-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.compare-icon svg {
    width: 22px;
    height: 22px;
}

.compare-icon-us {
    background: var(--accent-glow);
    color: var(--accent);
}

.compare-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.compare-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.compare-list strong {
    color: var(--text-primary);
}

.compare-x {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.compare-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--section-padding);
    background:
        linear-gradient(180deg, rgba(10, 14, 26, 0.94) 0%, rgba(10, 14, 26, 0.96) 100%),
        url('https://images.unsplash.com/photo-1563207153-f403bf289096?w=1920&q=80') center center / cover no-repeat;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Team Section
   ======================================== */
.team {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.team-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.team-photo {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 2px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.photo-placeholder svg {
    width: 60px;
    height: 60px;
}

.team-socials {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.team-socials a:hover {
    background: var(--accent);
    color: #fff;
}

.team-socials svg {
    width: 16px;
    height: 16px;
}

.team-info {
    padding: 32px;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    color: var(--accent);
}

/* Together section */
.team-together {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.team-together h3 {
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.together-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.together-item {
    text-align: center;
}

.together-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.together-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.together-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   Industries Section
   ======================================== */
.industries {
    padding: var(--section-padding);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
}

.industry-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 14px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.industry-icon svg {
    width: 28px;
    height: 28px;
}

.industry-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Experience banner */
.experience-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.exp-item {
    text-align: center;
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.exp-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

/* Contact info card */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-card > p {
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 10px;
    color: var(--accent);
    flex-shrink: 0;
}

.info-icon svg {
    width: 18px;
    height: 18px;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-item a,
.info-item span:not(.info-label) {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

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

    .workflow-flow {
        gap: 8px;
    }

    .wf-step {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

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

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

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

    .team-together {
        padding: 32px 24px;
    }

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

    .experience-banner {
        grid-template-columns: 1fr 1fr;
        padding: 32px;
    }

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

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

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .experience-banner {
        grid-template-columns: 1fr;
    }
}
