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

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e3a5f;
    --blue-900: #1e293b;
    --blue-950: #0f172a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--slate-600);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    color: var(--slate-900);
    line-height: 1.25;
}

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 640px;
    margin: 0 auto;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.93rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.btn-ghost:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.btn-nav {
    background: var(--blue-600);
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-nav:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--slate-500);
    font-weight: 400;
}

.logo-text strong {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 0.95rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate-500);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--blue-600);
    border-radius: 1px;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--slate-900);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

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

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

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-700);
    background: var(--blue-100);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
}

.trust-number {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--slate-400);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* Hero image */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.3) 100%);
    pointer-events: none;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    color: var(--slate-400);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--slate-300), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

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

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue-600);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.85;
}

.about-content .section-title {
    font-size: 2.2rem;
}

.about-lead {
    font-size: 1.12rem;
    color: var(--slate-700);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 14px;
}

.about-credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--slate-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
}

.credential:hover {
    border-color: var(--blue-200);
    background: var(--blue-50);
}

.credential-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.credential p {
    font-size: 0.82rem;
    color: var(--slate-400);
    margin-bottom: 0;
}

/* ===== Specialization ===== */
.specialization {
    padding: 120px 0;
    background: var(--slate-50);
}

.spec-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.spec-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-600);
    transform: scaleX(0);
    transition: var(--transition);
}

.spec-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

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

.spec-card-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue-200);
    margin-bottom: 16px;
}

.spec-card-icon {
    color: var(--blue-600);
    margin-bottom: 16px;
}

.spec-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.spec-card p {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.65;
}

/* Highlight block */
.spec-highlight {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
    background: var(--blue-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--white);
}

.spec-highlight-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spec-highlight h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 16px;
}

.spec-highlight p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 28px;
}

.spec-highlight .btn-primary {
    align-self: flex-start;
}

.spec-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

/* ===== Process ===== */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 23px;
    width: 2px;
    background: var(--slate-200);
}

.process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
}

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

.step-marker {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: var(--transition);
}

.step-marker span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-600);
}

.step-marker-final {
    background: var(--blue-600);
    color: var(--white);
}

.step-marker-final svg {
    color: var(--white);
}

.process-step:hover .step-marker {
    background: var(--blue-600);
    transform: scale(1.1);
}

.process-step:hover .step-marker span {
    color: var(--white);
}

.step-content {
    padding-top: 8px;
}

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

.step-content p {
    font-size: 0.92rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--slate-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-intro p {
    margin: 16px 0 28px;
    color: var(--slate-500);
}

.faq-item {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--blue-200);
}

.faq-item[open] {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
    list-style: none;
    transition: var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: "";
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--slate-400);
    border-radius: 1px;
    transition: var(--transition-fast);
}

.faq-icon span:first-child {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--slate-100);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--slate-500);
}

/* Contact form */
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--slate-800);
    transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--slate-400);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-icon circle:first-child {
    fill: rgba(59, 130, 246, 0.2);
}

.footer-brand .logo-text {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand .logo-text strong {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--blue-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
}

/* ===== Scroll Animations ===== */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-scale-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.anim-fade-up {
    transform: translateY(40px);
}

.anim-fade-left {
    transform: translateX(40px);
}

.anim-fade-right {
    transform: translateX(-40px);
}

.anim-scale-in {
    transform: scale(0.85);
}

.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale-in.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered delays */
.anim-fade-up:nth-child(2) { transition-delay: 0.1s; }
.anim-fade-up:nth-child(3) { transition-delay: 0.2s; }
.anim-fade-up:nth-child(4) { transition-delay: 0.3s; }

.spec-card:nth-child(1) .anim-fade-up,
.spec-card.anim-fade-up:nth-child(1) { transition-delay: 0s; }
.spec-card.anim-fade-up:nth-child(2) { transition-delay: 0.1s; }
.spec-card.anim-fade-up:nth-child(3) { transition-delay: 0.2s; }
.spec-card.anim-fade-up:nth-child(4) { transition-delay: 0.3s; }

.credential.anim-fade-up:nth-child(1) { transition-delay: 0s; }
.credential.anim-fade-up:nth-child(2) { transition-delay: 0.15s; }
.credential.anim-fade-up:nth-child(3) { transition-delay: 0.3s; }

/* ===== Responsywność ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-links a {
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-image-wrapper img {
        height: 380px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper img {
        height: 400px;
    }

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

    .spec-highlight {
        grid-template-columns: 1fr;
    }

    .spec-highlight-image {
        order: -1;
    }

    .spec-highlight-image img {
        min-height: 240px;
    }

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

    .faq-intro {
        position: static;
    }

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

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

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

@media (max-width: 640px) {
    .hero {
        padding: 110px 0 60px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }

    .hero-image-wrapper img {
        height: 300px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -15px;
        padding: 14px 18px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

    .about-image-wrapper img {
        height: 320px;
    }

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

    .spec-cards {
        grid-template-columns: 1fr;
    }

    .spec-highlight-content {
        padding: 28px;
    }

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

    .contact-form {
        padding: 24px;
    }

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

    .about,
    .specialization,
    .process,
    .faq,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
