@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --clover-green: #1B5E3B;
    --clover-dark: #0D3D24;
    --warm-cream: #FDF8F3;
    --warm-sand: #E8DDD4;
    --terracotta: #C75B39;
    --terracotta-dark: #A84828;
    --charcoal: #2D2A26;
    --slate: #5A5650;
    --mist: #F5F2EE;
    --white: #FFFFFF;
    --success: #2E7D4A;
    --error: #C53030;
    --warning: #D69E2E;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --shadow-soft: 0 4px 20px rgba(45, 42, 38, 0.08);
    --shadow-medium: 0 8px 32px rgba(45, 42, 38, 0.12);
    --shadow-strong: 0 12px 48px rgba(45, 42, 38, 0.16);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--warm-cream);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clover-dark);
}

h1 {
    font-size: clamp(36px, 6vw, 64px);
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-family: var(--font-body);
    font-weight: 600;
}

a {
    color: var(--clover-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--terracotta);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--warm-sand);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.eflows-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clover-dark);
}

.eflows-logo i {
    color: var(--terracotta);
    font-size: 1.4rem;
}

.eflows-logo:hover {
    color: var(--clover-green);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--slate);
    position: relative;
    padding: 0.3rem 0;
}

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

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

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

.burger-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clover-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 5%;
    box-shadow: var(--shadow-medium);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.8rem 0;
    font-weight: 500;
    color: var(--charcoal);
    border-bottom: 1px solid var(--warm-sand);
}

.hero-roadtax {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--mist) 50%, var(--warm-sand) 100%);
    position: relative;
    overflow: hidden;
}

.hero-roadtax::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(27, 94, 59, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--clover-green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--clover-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--terracotta);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(199, 91, 57, 0.3);
    transition: all var(--transition-smooth);
}

.cta-primary:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(199, 91, 57, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--clover-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: 2px solid var(--clover-green);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.cta-secondary:hover {
    background: var(--clover-green);
    color: var(--white);
}

.hero-trust-signals {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-trust-signals li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--slate);
}

.hero-trust-signals i {
    color: var(--success);
}

.hero-visual {
    margin-top: 3rem;
    position: relative;
}

.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 100%;
    max-width: 600px;
}

.frustration-points {
    padding: 80px 5%;
    background: var(--white);
}

.frustration-points h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.frustration-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.frustration-item {
    background: var(--mist);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--terracotta);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.frustration-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.frustration-icon {
    width: 50px;
    height: 50px;
    background: var(--warm-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.frustration-icon i {
    font-size: 1.3rem;
    color: var(--terracotta);
}

.frustration-item h3 {
    margin-bottom: 0.75rem;
    color: var(--clover-dark);
}

.frustration-item p {
    color: var(--slate);
    font-size: 0.95rem;
}

.solution-approach {
    padding: 80px 5%;
    background: var(--warm-cream);
}

.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.solution-intro p {
    color: var(--slate);
    font-size: 1.1rem;
}

.solution-services {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-block img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-details {
    padding: 0 2rem 2rem;
}

.service-details h3 {
    color: var(--clover-dark);
    margin-bottom: 0.75rem;
}

.service-details p {
    color: var(--slate);
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-includes li {
    background: var(--mist);
    color: var(--clover-dark);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.audience-paths {
    padding: 80px 5%;
    background: var(--clover-dark);
    color: var(--white);
}

.audience-paths h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.path-options {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.path-option {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-smooth);
}

.path-option:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.path-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.path-header i {
    font-size: 1.8rem;
    color: var(--terracotta);
}

.path-header h3 {
    color: var(--white);
}

.path-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.path-checklist {
    list-style: none;
    margin-bottom: 1.5rem;
}

.path-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.path-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.path-cta {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.path-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white);
}

.process-timeline {
    padding: 80px 5%;
    background: var(--white);
}

.process-timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-steps {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--warm-sand);
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--clover-green);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--clover-dark);
}

.step-content p {
    color: var(--slate);
}

.credibility-block {
    padding: 80px 5%;
    background: var(--mist);
}

.credibility-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--clover-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--slate);
    font-size: 0.95rem;
}

.testimonial-highlight {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-highlight::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--warm-sand);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-highlight p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-highlight cite {
    color: var(--slate);
    font-size: 0.9rem;
    font-style: normal;
}

.help-request {
    padding: 80px 5%;
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-sand) 100%);
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-intro p {
    color: var(--slate);
}

.inquiry-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.9rem 1rem;
    border: 2px solid var(--warm-sand);
    border-radius: var(--radius-sm);
    background: var(--mist);
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--clover-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 94, 59, 0.1);
}

.form-field input:valid:not(:placeholder-shown),
.form-field select:valid,
.form-field textarea:valid:not(:placeholder-shown) {
    border-color: var(--success);
}

.form-field input:invalid:not(:placeholder-shown):not(:focus),
.form-field textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--error);
}

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

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--clover-green);
}

.form-consent label {
    font-size: 0.9rem;
    color: var(--slate);
}

.form-consent a {
    text-decoration: underline;
}

.submit-inquiry {
    width: 100%;
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.submit-inquiry:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 91, 57, 0.3);
}

.form-alternative {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--slate);
    font-size: 0.95rem;
}

.faq-common {
    padding: 80px 5%;
    background: var(--white);
}

.faq-common h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--warm-sand);
    padding: 1.5rem 0;
}

.faq-item dt {
    font-weight: 600;
    color: var(--clover-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item dt::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--terracotta);
    transition: transform var(--transition-fast);
}

.faq-item.active dt::after {
    transform: rotate(45deg);
}

.faq-item dd {
    color: var(--slate);
    line-height: 1.7;
}

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 5% 30px;
}

.footer-main {
    display: grid;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.eflows-logo-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.eflows-logo-footer i {
    color: var(--terracotta);
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links-group h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links-group a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-group a:hover,
.footer-contact a:hover {
    color: var(--terracotta);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-contact i {
    color: var(--terracotta);
    width: 18px;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-legal p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.cookie-banner:not([hidden]) {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-content a {
    color: var(--terracotta);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-accept {
    background: var(--terracotta);
    color: var(--white);
    border: none;
}

.cookie-accept:hover {
    background: var(--terracotta-dark);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    border-color: var(--white);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 42, 38, 0.8);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-overlay:not([hidden]) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-smooth);
}

.modal-overlay:not([hidden]) .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--mist);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--terracotta);
    color: var(--white);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal-content p {
    margin-bottom: 1rem;
    color: var(--slate);
    font-size: 0.95rem;
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate.slide-left {
    transform: translateX(-30px);
}

.animate.slide-left.visible {
    transform: translateX(0);
}

.animate.slide-right {
    transform: translateX(30px);
}

.animate.slide-right.visible {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .burger-toggle {
        display: none;
    }
    
    .hero-roadtax {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-visual {
        flex: 1;
        margin-top: 0;
    }
    
    .frustration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .path-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .credibility-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-roadtax {
        padding: 140px 8% 100px;
    }
    
    .service-block {
        flex-direction: row;
        align-items: stretch;
    }
    
    .service-block.reverse {
        flex-direction: row-reverse;
    }
    
    .service-block img {
        width: 45%;
        height: auto;
        min-height: 300px;
    }
    
    .service-details {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .frustration-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .frustration-item {
        border-left: none;
        border-top: 4px solid var(--terracotta);
    }
}