/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #00E676;
    --accent-dark: #00C853;
    --accent-light: #69F0AE;
    --primary-gradient: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    --secondary-color: #014f98;
    --secondary-dark: #0D47A1;
    --text-color: #1A1A1A;
    --text-light: #4A5568;
    --border-color: #E2E8F0;
    --bg-light: #F7FAFC;
    --bg-dark: #0F172A;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 230, 118, 0.1), 0 4px 6px -2px rgba(0, 230, 118, 0.05);
    --max-width: 1200px;
    --spacing-unit: 1rem;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Typography */
h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    font-weight: 600;
    color: var(--secondary-color);
}

p {
    margin-bottom: var(--spacing-unit);
}

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

a:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    padding: 0.25rem 0;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    text-decoration: none;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-gradient);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 230, 118, 0.2);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 230, 118, 0.3);
    text-decoration: none;
}

/* Main content */
main {
    min-height: calc(100vh - 200px);
    padding: 0;
}

main > .section:first-of-type {
    padding-top: 3rem;
}

/* Hero section */
.hero {
    position: relative;
    padding: 6rem 0;
    margin: 0;
    width: 100%;
    background: 
        /* linear-gradient(135deg, rgba(26, 35, 126, 0.65) 0%, rgba(13, 71, 161, 0.65) 50%, rgba(15, 23, 42, 0.65) 100%), */
        url('../img/17266_res.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Background gradients removed */
    pointer-events: none;
    z-index: 0;
}

/* Alternative: pentru a folosi o altă imagine, schimbă numele fișierului de mai sus */
/* Opțiuni disponibile: 14624.jpg, 17266.jpg, 3d-abstract-background-with-modern-plexus-design.jpg */

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* Border gradient removed */
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.hero .subheadline {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Page hero (for non-homepage pages) */
.page-hero {
    background: var(--secondary-color);
    padding: 3rem 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.page-hero .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 800;
}

.page-hero .subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
}

.page-hero-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    max-width: 800px;
}

.page-hero-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    /* line-height: 1.8; */
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.page-hero-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.page-hero-cta {
    margin-top: 2rem;
}

.page-hero-cta .btn {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 230, 118, 0.3);
}

.page-hero-cta .btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 230, 118, 0.4);
}

/* Sections */
.section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    color: var(--secondary-color);
}

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

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

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

/* Tool cards */
.tools-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #EDF2F7 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 24px;
    position: relative;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tool-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.tool-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--accent-light);
}

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Who this is for / not for */
.who-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    
}

.who-box {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.who-box:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.who-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.who-box ul {
    list-style: none;
    padding-left: 0;
}

.who-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.who-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.proof-block {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof-block p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    margin: 0 0 1rem 0;
    line-height: 1.7;
}

.proof-block p:last-child {
    margin-bottom: 0;
}

/* Process steps */
.process-section {
    padding: 2rem 0;
}

/* Experience / Case studies */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.experience-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

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

.experience-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.experience-client {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.experience-card p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: var(--text-color);
}

.experience-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.experience-scope {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.experience-scope strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 2rem 0;
}

.process-step {
    counter-increment: step-counter;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 230, 118, 0.3);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Compact process steps variant */
.process-steps-compact {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.process-step-compact {
    counter-increment: step-counter;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.process-step-compact:hover {
    border-color: var(--accent-light);
    box-shadow: 0 2px 8px rgba(0, 230, 118, 0.1);
}

.step-number-compact {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 230, 118, 0.25);
}

.step-content-compact h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

.step-content-compact p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 230, 118, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 230, 118, 0.35);
    text-decoration: none;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary:hover {
    background: var(--accent-light);
    color: var(--text-color);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

/* Form */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label .required {
    color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #d32f2f;
}

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

.form-group .help-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: none;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-column h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin-bottom: 0.75rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    margin-bottom: 1.5rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-legal strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
        .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero .subheadline {
        font-size: 1.125rem;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .subheadline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .page-hero-list {
        margin: 1rem 0 0 0;
    }
    
    .page-hero-list li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        padding-left: 1.25rem;
    }
    
    .page-hero-cta {
        margin-top: 1.5rem;
    }
    
    .cta-section {
        border-radius: 16px;
        padding: 3rem 1rem;
    }
    
    .tools-section {
        border-radius: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .services-grid,
    .tools-grid,
    .who-section {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-card {
        padding: 2rem 1.5rem;
    }
    
    .experience-card h3 {
        font-size: 1.25rem;
    }
    
    .proof-block {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .proof-block p {
        font-size: 0.95rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-steps-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step-compact {
        padding: 1rem;
    }
    
    main {
        padding: 1rem 0;
    }
}

  /* =========================
   About page styles
   ========================= */

.section.about {
    padding: 4rem 0;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .section__header {
    max-width: 760px;
    margin-bottom: 3rem;
  }
  
  .section__header h1 {
    margin: 0 0 1rem;
  }
  
  .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
  
  /* Grid layout */
  .about__grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: start;
  }
  
  /* Founder block */
  .about__founder {
    padding-top: 50px;
    position: sticky;
    top: 6rem;
  }
  
  .founder {
    text-align: center;
  }
  
  .founder img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    object-fit: cover;
    border: 1px solid #e5e5e5;
    background: #f5f5f5;
  }
  
  .founder__caption {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .founder__caption strong {
    display: block;
    font-weight: 600;
  }
  
  .founder__caption span {
    color: #666;
  }
  
  /* Content */
  .about__content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
  }
  
  .about__content p {
    margin: 0 0 1rem;
    line-height: 1.65;
  }
  
  .about__content ul {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
  }
  
  .about__content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  
  /* Muted text */
  .muted {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* CTA */
  .cta-inline {
    margin-top: 2rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #00c853;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #00b74a;
  }
  
  /* =========================
     Responsive adjustments
     ========================= */
  
  @media (max-width: 900px) {
    .about__grid {
      grid-template-columns: 1fr;
    }
  
    .about__founder {
      position: static;
      margin-bottom: 2rem;
    }
  
    .founder img {
      width: 120px;
      height: 120px;
    }
  }