/* --- 1. VARIABLES & RESET (LIGHTER THEME) --- */
:root {
    --color-brand-black: #F8F9FA;
    --color-brand-charcoal: #E9ECEF;
    --color-brand-panel: #FFFFFF;
    --color-brand-border: #DEE2E6;
    --color-brand-text: #212529;
    --color-brand-muted: #6C757D;
    --color-brand-purple: #6D28D9;
    --color-brand-success: #10B981;
    --color-white: #ffffff;
    --color-black: #050505;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    --container-width: 1280px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-brand-black);
    color: var(--color-brand-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: color 0.2s ease; 
}

ul { list-style: none; }

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.btn-primary {
    background-color: var(--color-brand-purple);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background-color: #5B21B6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

/* --- 3. NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-brand-border);
    z-index: 1000;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--color-brand-purple);
}

.nav-badge {
    display: none;
    padding: 4px 8px;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-brand-purple);
    border-radius: var(--radius-sm);
    color: var(--color-brand-purple);
    background-color: rgba(109, 40, 217, 0.1);
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-muted);
}

.nav-links a:hover { 
    color: var(--color-brand-purple); 
}

.nav-cta { 
    padding: 10px 20px;
    font-size: 0.75rem;
    background-color: var(--color-brand-purple);
    color: var(--color-white);
    border: none;
}

.nav-cta:hover {
    background-color: #5B21B6;
    transform: translateY(-1px);
}

/* Navigation Active States */
.nav-links a.active {
    color: var(--color-brand-purple) !important;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-brand-purple);
    border-radius: 1px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-black);
}

/* --- 4. BACKGROUND PATTERNS --- */
.bg-grid {
    position: relative;
}

.bg-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(222, 226, 230, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(222, 226, 230, 0.3) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

.bg-grid-dense::before {
    background-size: 20px 20px;
}

/* --- 5. HERO SECTION --- */
.hero {
    padding: 160px 0 80px;
    position: relative;
    border-bottom: 1px solid var(--color-brand-border);
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(248, 249, 250, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1024px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    border-left: 2px solid var(--color-brand-purple);
    padding-left: 16px;
    color: var(--color-brand-muted);
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.hero h1 span {
    color: var(--color-brand-purple);
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-brand-muted);
    max-width: 768px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--color-brand-border);
    background-color: rgba(255, 255, 255, 0.8);
    max-width: fit-content;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.status-dots {
    display: flex;
    gap: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--color-brand-success);
}

.status-text {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-brand-muted);
}

/* --- 6. SPECIALIZED FOR SECTION --- */
.specialized {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-brand-border);
    background-color: var(--color-white);
}

.specialized-label {
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.specialized-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0.9;
}

.specialized-item {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-brand-border);
    padding-bottom: 4px;
}

/* --- 7. EXPERTISE SECTION --- */
.section {
    padding: 96px 0;
    border-bottom: 1px solid var(--color-brand-border);
    background-color: var(--color-white);
}

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

.section-label {
    color: var(--color-brand-purple);
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-description {
    color: var(--color-brand-muted);
    font-size: 1.125rem;
    max-width: 768px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card {
    background-color: var(--color-brand-panel);
    border: 1px solid var(--color-brand-border);
    padding: 32px;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-brand-purple);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.1);
}

.card-number {
    font-size: 2rem;
    color: var(--color-brand-purple);
    margin-bottom: 16px;
    opacity: 0.8;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
}

.card-description {
    color: var(--color-brand-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.card-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-brand-border);
}

.card-footer-text {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
}

/* --- 8. APPROACH SECTION --- */
.approach-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .approach-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background-color: rgba(109, 40, 217, 0.1);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand-purple);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
}

.highlight-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-brand-purple);
    padding: 32px;
    max-width: 768px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background-color: rgba(109, 40, 217, 0.05);
}

.highlight-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(109, 40, 217, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-brand-purple);
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

.highlight-description {
    color: var(--color-brand-muted);
    line-height: 1.6;
}

/* --- 9. RESULTS SECTION --- */
.results-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .results-header {
        flex-direction: row;
        align-items: flex-start;
    }
}

.results-stats {
    text-align: center;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .results-stats {
        text-align: right;
        margin-top: 0;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-black);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

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

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.result-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
}

.result-image {
    aspect-ratio: 16/9;
    background-color: var(--color-brand-panel);
    border: 1px solid var(--color-brand-border);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.result-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.result-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px;
}

.result-image-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: 8px;
}

.result-image-subtitle {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
}

.result-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.result-card:hover .result-title {
    color: var(--color-brand-purple);
}

.result-description {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    line-height: 1.6;
}

.result-badge {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-brand-muted);
    border: 1px solid var(--color-brand-border);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

/* --- 10. WHY US SECTION --- */
.benefit-card {
    border: 1px solid var(--color-brand-border);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    background-color: var(--color-brand-panel);
}

.benefit-card:hover {
    border-color: var(--color-brand-purple);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(109, 40, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-brand-purple);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
}

.benefit-description {
    color: var(--color-brand-muted);
    line-height: 1.6;
}

/* --- 11. CONTACT FORM --- */
.form-container {
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--color-white);
    border: 1px solid var(--color-brand-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.form-header {
    border-bottom: 1px solid var(--color-brand-border);
    padding: 16px 24px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background-color: var(--color-brand-purple);
}

.form-title {
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-body {
    padding: 32px;
}

@media (min-width: 768px) {
    .form-body {
        padding: 48px;
    }
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-black);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-white);
    border: 1px solid var(--color-brand-border);
    color: var(--color-brand-text);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-brand-purple);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

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

.form-radio-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 12px;
    border: 1px solid var(--color-brand-border);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.form-radio-label:hover {
    border-color: var(--color-brand-purple);
    background-color: rgba(109, 40, 217, 0.05);
}

.form-radio-input {
    margin-right: 12px;
    margin-top: 4px;
}

.form-radio-content {
    flex: 1;
}

.form-radio-title {
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 2px;
}

.form-radio-description {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
}

.form-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-back {
    color: var(--color-brand-muted);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.form-back:hover {
    color: var(--color-brand-purple);
}

.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 24px;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.success-icon {
    color: var(--color-brand-success);
}

.success-title {
    font-weight: 600;
    color: var(--color-black);
}

.success-description {
    color: var(--color-brand-muted);
    line-height: 1.6;
}

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

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- 12. CONTACT INFO --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(109, 40, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-brand-purple);
}

.contact-details h4 {
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.contact-details a {
    color: var(--color-brand-muted);
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--color-brand-purple);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    margin-top: 2px;
}

.focus-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-brand-border);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.focus-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 16px;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.focus-item h4 {
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 4px;
}

.focus-item p {
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* --- 13. FOOTER --- */
footer {
    padding: 96px 0 48px;
    border-top: 1px solid var(--color-brand-border);
    background-color: var(--color-brand-charcoal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 96px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col-wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-col-wide {
        grid-column: span 2;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 24px;
    display: inline-block;
}

.footer-description {
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 384px;
}

.footer-col h5 {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-black);
    margin-bottom: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col li {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
}

.footer-col a {
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-brand-purple);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-brand-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-brand-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-brand-purple);
}

/* --- 14. FADE ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- 15. SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-brand-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--color-brand-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand-muted);
}

/* --- 16. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(248, 249, 250, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 32px 0;
        gap: 24px;
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--color-brand-border);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-badge {
        display: none;
    }
    
    .nav-cta {
        margin-top: 16px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .specialized-items {
        gap: 24px;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .form-body {
        padding: 24px;
    }

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

/* Additional Form Styles */
.form-response-message {
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-response-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-brand-success);
}

.form-response-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-error {
    display: none;
    font-size: 0.875rem;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Loading spinner animation */
.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}