/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

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

:root {
    --color-dark: #0e1115;
    --color-dark-2: #0a0d10;
    --color-accent: #FF6B35;
    --color-accent-2: #FF8C42;
    --color-bg: #f0efef;
    --color-white: #ffffff;
    --color-text: #444552;
    --color-muted: #666;
    --color-muted-light: #bab9be;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: clamp(16px, 2vw, 17px);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 12px;
}

h3 {
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
}

p {
    font-weight: 400;
    margin-bottom: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(255, 107, 53, 0.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

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

/* ==========================================
   LAYOUT & CONTAINER
   ========================================== */

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

section {
    padding: clamp(60px, 10vh, 100px) 0;
}

/* ==========================================
   COLOR & UTILITY CLASSES
   ========================================== */

.highlight {
    color: var(--color-accent);
}

.dark-section {
    background-color: var(--color-dark);
    color: var(--color-bg);
}

.dark-section h2,
.dark-section h3 {
    color: #ffffff;
}

.light-text {
    color: #f0efef;
}

.light-text p {
    color: #bab9be;
}

/* ==========================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================== */

.cta-button {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    min-height: 44px;
}

.cta-button.primary:hover {
    background-color: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.header-cta {
    padding: 10px 24px;
    font-size: 15px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

.navbar > * {
    z-index: 1;
}

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

.logo {
    width: 40px;
    height: auto;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark);
}

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #ffffff;
    list-style: none;
    gap: 0;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 8px;
    margin-top: 8px;
}

.nav-menu.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 0;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #444552;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: block;
    padding: 12px 24px;
}

.nav-link:hover {
    color: #FF6B35;
    background-color: rgba(255, 107, 53, 0.05);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #0e1115;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Scroll Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #FF6B35, #FF8C42);
    width: 0%;
    transition: width 0.2s ease;
}

/* ==========================================
   SKIP TO CONTENT LINK (ACCESSIBILITY)
   ========================================== */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #FF6B35;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10001;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* ==========================================
   HERO SECTION
   ========================================== */

main {
    margin-top: 80px;
}

.hero {
    background: linear-gradient(180deg, #0a0d10 0%, #0e1115 50%, #1a1d22 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-tool-silhouettes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tool-silhouette {
    position: absolute;
    filter: brightness(0) invert(1);
    opacity: 0.03;
}

.tool-pliers {
    width: 200px;
    top: 20%;
    right: 15%;
    transform: rotate(-25deg);
}

.tool-wrench {
    width: 180px;
    bottom: 25%;
    left: 8%;
    transform: rotate(35deg);
}

.tool-pince {
    width: 160px;
    top: 65%;
    right: 8%;
    transform: rotate(-15deg);
}

.hero-home-shape {
    position: absolute;
    top: 50%;
    left: 62%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 45%;
    max-width: 650px;
}

.home-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin-left: 80px;
}

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

.hero-content .eyebrow {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: clamp(48px, 8vw, 80px);
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-line {
    display: block;
    position: relative;
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #0a0d10;
    mix-blend-mode: difference;
    filter: invert(1);
}

.hero-content p {
    font-size: 17px;
    color: #e8e7ec;
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 480px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.hero-cta:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 62%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 900px;
}

.main-hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
}

.hero-tagline {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-tagline-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    color: rgba(255, 107, 53, 0.06);
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

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

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.about-expertise .section-header p {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================
   TRUST BADGES SECTION
   ========================================== */

.trust-badges {
    background: linear-gradient(rgba(14, 17, 21, 0.95), rgba(14, 17, 21, 0.95)),
                url('../img/repair-man.png') center/cover no-repeat;
    color: #f0efef;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.trust-badges::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent 70%);
    pointer-events: none;
}

.trust-badges .container {
    position: relative;
    z-index: 2;
}

/* Minimalistic Badges */
.badges-minimal {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.badge-minimal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 320px;
}

.badge-minimal:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
}

.badge-minimal-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-minimal-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.badge-minimal-content {
    text-align: left;
}

.badge-minimal h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.badge-minimal p {
    font-size: 13px;
    color: #bab9be;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    background-color: #ffffff;
}

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

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e5e4e4;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: linear-gradient(135deg, #0a0e1a 0%, #131824 100%);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(255, 107, 53, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0e1115;
    transition: color 0.4s ease;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    color: #666;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    text-align: left;
    padding: 20px 0;
    border-top: 1px solid #e5e4e4;
    transition: border-color 0.4s ease;
}

.service-card:hover .service-features {
    border-top-color: rgba(255, 107, 53, 0.3);
}

.service-features li {
    padding: 6px 0;
    color: #444552;
    font-size: 14px;
    transition: color 0.4s ease;
}

.service-card:hover .service-features li {
    color: #d0d0d0;
}

.service-features li:before {
    content: "✓ ";
    color: #FF6B35;
    font-weight: bold;
    margin-right: 8px;
    transition: color 0.4s ease;
}

.service-card:hover .service-features li:before {
    color: #FF8C42;
}

/* ==========================================
   ADDITIONAL SERVICES SECTION
   ========================================== */

.additional-services {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    padding: 100px 0;
}

.additional-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.additional-service-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

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

.additional-service-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.additional-service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.additional-service-item:hover .additional-service-image img {
    transform: scale(1.05);
}

.additional-service-content {
    padding: 20px;
}

.service-title-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: #ffffff;
    border: 2px solid #e5e4e4;
    border-radius: 12px;
    margin-bottom: 20px;
    min-width: 280px;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-title-icon-wrap {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50%;
    transition: background 0.4s ease;
}

.service-title-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.additional-service-content h3 {
    font-size: 32px;
    color: #0e1115;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.additional-service-item:hover .service-title-box {
    background: #0b0d11;
    border-color: #0b0d11;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35),
        0 6px 16px rgba(14, 17, 21, 0.25);
}

.additional-service-item:hover .service-title-icon-wrap {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.additional-service-item:hover .service-title-icon {
    filter: brightness(0) invert(1);
}

.additional-service-item:hover .additional-service-content h3 {
    color: #ffffff;
}

.additional-service-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.additional-service-content .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    border-top: none;
}

.additional-service-content .service-features li {
    padding: 8px 0;
    color: #444552;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.additional-service-content .service-features li:before {
    content: "✓";
    color: #FF6B35;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.additional-service-content .cta-button {
    margin-top: 8px;
}

/* Reverse layout for alternating items */
.additional-service-item-reverse {
    grid-template-columns: 1fr 1fr;
}

.additional-service-item-reverse .additional-service-image {
    order: 2;
}

.additional-service-item-reverse .additional-service-content {
    order: 1;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery {
    background: linear-gradient(140deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 65%);
    top: -160px;
    right: -140px;
    border-radius: 50%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    background: rgba(14, 17, 21, 0.8);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.gallery-card--wide {
    grid-column: span 2;
}

.gallery-card--tall {
    grid-row: span 2;
}

/* ==========================================
   EXPERTISE SHOWCASE
   ========================================== */

.expertise {
    padding: 100px 0;
}

.expertise.dark-section {
    background: linear-gradient(135deg, #0e1115 0%, #171c25 100%);
    position: relative;
    overflow: hidden;
}

.expertise.dark-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.12), transparent 55%);
    pointer-events: none;
}

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

.expertise-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dark-section .expertise-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.dark-section .expertise-card h3 {
    color: #ffffff;
}

.dark-section .expertise-card p {
    color: #bab9be;
}

.expertise-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
}

.expertise-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #ff7f4d 100%);
    border-radius: 12px;
}

.expertise-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.expertise-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.expertise-card p {
    font-size: 15px;
    color: #bab9be;
    margin: 0;
}

/* ==========================================
   VISUAL BREAK
   ========================================== */

.visual-break {
    background: linear-gradient(120deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.visual-break::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 65%);
    bottom: -200px;
    left: -120px;
    border-radius: 50%;
}

.visual-break-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.visual-break-text h2 {
    margin-bottom: 16px;
}

.visual-break-text p {
    color: #666;
    font-size: 17px;
}

.visual-break-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: grid;
    gap: 20px;
}

.visual-break-card strong {
    font-size: 18px;
    color: #0e1115;
}

.visual-break-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.visual-break-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0e1115;
}

.visual-break-card li::before {
    content: "✓";
    color: #FF6B35;
    font-weight: 800;
}

.visual-break-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.values-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.value-pill {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.value-pill strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.value-pill p {
    font-size: 12px;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-size: 18px;
}

.stat-text {
    color: #bab9be;
    font-size: 14px;
    margin: 4px 0 0 0;
}

.about-image {
    grid-column: 1 / -1;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.35) 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 -60px 80px rgba(255, 107, 53, 0.4);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.about-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-merged {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process {
    padding: 100px 0;
    background: linear-gradient(140deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 65%);
    bottom: -200px;
    left: -120px;
    border-radius: 50%;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.process-banner::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0) 0%, rgba(255, 107, 53, 0.6) 50%, rgba(255, 107, 53, 0) 100%);
    opacity: 0.6;
}

.process-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: #f0efef;
    position: relative;
    z-index: 1;
}

.process-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-banner-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.process-banner-item span {
    font-size: 14px;
    font-weight: 600;
}

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

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 107, 53, 0.15);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.process-step h3 {
    margin-bottom: 12px;
    color: #ffffff;
}

.process-step p {
    color: #bab9be;
    font-size: 15px;
    margin: 0;
}

/* Process Header Spacing */
.process-header {
    margin-top: 80px;
    margin-bottom: 60px;
}

/* Minimalistic Process Steps */
.process-steps-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-minimal {
    flex: 1;
    text-align: center;
    padding: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 20px;
    font-family: 'Poppins', sans-serif;
}

.process-step-minimal h3 {
    color: #0e1115;
    margin-bottom: 12px;
    font-size: 20px;
}

.process-step-minimal p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    color: #FF6B35;
    font-size: 32px;
    font-weight: 300;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.testimonial-card {
    background: #f9f8f8;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid #FF6B35;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid #e5e4e4;
}

.testimonial-author strong {
    display: block;
    color: #0e1115;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    background: linear-gradient(rgba(14, 17, 21, 0.75), rgba(14, 17, 21, 0.85)),
                url('../workers%20images/background-tools.png') top center/contain no-repeat;
    background-color: #111418;
    padding: 80px 0;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.faq .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.faq .section-header p {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0efef;
}

.faq-question:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 6px;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 600;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: 80px 0;
}

.contact.dark-section {
    background: linear-gradient(135deg, #0e1115 0%, #141922 100%);
    position: relative;
    overflow: hidden;
}

.contact.dark-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.12), transparent 60%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bab9be;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select {
    cursor: pointer;
}

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #90EE90;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #FF8A8A;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

.contact-info {
    display: grid;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.info-card h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.info-card p {
    color: #bab9be;
    margin: 6px 0;
}

.info-card a {
    color: #FF6B35;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #FF8C42;
    text-decoration: underline;
}

.contact-image {
    position: relative;
    margin-top: 16px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-logo-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: auto;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.85;
}

.engraved-logo {
    position: absolute !important;
    top: 50%;
    left: 77%;
    transform: translate(-50%, -50%);
    width: 75px !important;
    height: auto !important;
    opacity: 0.9;
    mix-blend-mode: hard-light;
    filter: drop-shadow(0 4px 40px rgba(0, 0, 0, 0.35));
    pointer-events: none;
    z-index: 5;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #0a0d10;
    color: #bab9be;
    padding: 60px 0 24px 0;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #bab9be;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B35;
}

.footer-logo {
    width: 40px;
    height: auto;
    margin-bottom: 16px;
}

.footer-section p {
    color: #bab9be;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0.8);
}

.social-icon:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 14px;
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */

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

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet: 768px - 960px */
@media (max-width: 960px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero .container {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
        padding: 0 24px;
    }

    .hero-image-wrapper {
        max-width: 700px;
        left: 58%;
        top: 50%;
    }

    .main-hero-image {
        max-width: 700px;
    }

    .hero-tagline {
        display: none;
    }

    .hero-home-shape {
        width: 50%;
        max-width: 500px;
        left: 58%;
    }

    .badges-minimal {
        gap: 40px;
    }

    .badge-minimal {
        padding: 20px 24px;
    }

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

    .additional-service-item {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
        margin-bottom: 60px;
    }

    .additional-service-item-reverse .additional-service-image {
        order: 1;
    }

    .additional-service-item-reverse .additional-service-content {
        order: 2;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-card--wide,
    .gallery-card--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .about-content-merged {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-pills {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .process-banner::before {
        display: none;
    }

    .process-steps-minimal {
        gap: 24px;
    }

    .process-arrow {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

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

    .nav-menu {
        gap: 24px;
    }

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

    section {
        padding: clamp(40px, 8vh, 60px) 0;
    }
}

/* Mobile: 480px - 768px */
@media (max-width: 768px) {
    main {
        margin-top: 60px;
    }

    .header {
        padding-right: 0;
    }

    .navbar {
        padding: 12px 0;
    }

    .header .container {
        padding: 0 22px;
    }

    .container {
        padding: 0 22px;
    }

    .hero {
        padding: 48px 0;
        min-height: auto;
    }

    .hero .container {
        margin-left: 22px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(42px, 10vw, 60px);
        margin-bottom: 28px;
        gap: 2px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 360px;
        margin-bottom: 28px;
    }

    .hero-image-wrapper {
        max-width: 600px;
        left: 65%;
        top: 50%;
    }

    .main-hero-image {
        max-width: 600px;
    }

    .hero-home-shape {
        width: 55%;
        max-width: 400px;
        left: 65%;
        transform: translate(-50%, -50%) scaleX(-1);
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        order: 3;
        margin-right: 16px;
    }

    .nav-menu {
        left: 0;
        right: 0;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-link::after {
        display: none;
    }

    .logo-section {
        flex: 1;
    }

    h1 {
        font-size: clamp(24px, 5vw, 32px);
    }

    h2 {
        font-size: clamp(24px, 5vw, 32px);
    }

    h3 {
        font-size: 18px;
    }

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

    .additional-service-item {
        padding: 24px;
        margin-bottom: 40px;
    }

    .additional-service-content h3 {
        font-size: 24px;
    }

    .additional-service-content p {
        font-size: 15px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .values-pills {
        grid-template-columns: 1fr;
    }

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

    .process-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-steps-minimal {
        flex-direction: column;
        gap: 32px;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 32px;
    }

    .badges-minimal {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .badge-minimal {
        padding: 20px;
        max-width: 100%;
    }

    .badge-minimal-icon {
        width: 44px;
        height: 44px;
    }

    .badge-minimal-icon img {
        width: 24px;
        height: 24px;
    }

    .badge-minimal h3 {
        font-size: 15px;
    }

    .badge-minimal p {
        font-size: 12px;
    }

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

    .cta-button {
        width: 100%;
    }

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

    .contact-form {
        padding: 24px;
    }

    .social-links {
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }


    .expertise-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .expertise-icon {
        width: 40px;
        height: 40px;
    }

    section {
        padding: 40px 0;
    }
}

/* Small Mobile: < 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 22px;
    }

    main {
        margin-top: 56px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    .logo-section {
        gap: 8px;
    }

    .logo {
        width: 32px;
    }

    .brand-name {
        font-size: 16px;
    }

    .hero {
        padding: 36px 0;
        min-height: auto;
    }

    .hero .container {
        margin-left: 20px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 11vw, 50px);
        margin-bottom: 24px;
        gap: 0px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 280px;
        line-height: 1.65;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-image-wrapper {
        max-width: 450px;
        left: 68%;
        top: 50%;
    }

    .main-hero-image {
        max-width: 450px;
    }

    .hero-home-shape {
        width: 60%;
        max-width: 300px;
        left: 68%;
        transform: translate(-50%, -50%) scaleX(-1);
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .badge-item {
        padding: 16px;
    }

    .badge-icon {
        font-size: 32px;
    }

    .badge-item h3 {
        font-size: 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .expertise-card {
        padding: 24px 16px;
    }

    .expertise-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .expertise-icon {
        width: 35px;
        height: 35px;
    }

    .expertise-card h3 {
        font-size: 16px;
    }

    .expertise-card p {
        font-size: 13px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-text {
        font-size: 12px;
    }

    .value-pill {
        padding: 16px 12px;
    }

    .value-pill strong {
        font-size: 14px;
    }

    .value-pill p {
        font-size: 11px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .process-icon img {
        width: 26px;
        height: 26px;
    }

    .process-step {
        padding: 20px 16px;
    }

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

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 13px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .process-step-minimal h3 {
        font-size: 18px;
    }

    .process-step-minimal p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .testimonial-author span {
        font-size: 12px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .contact-form {
        padding: 16px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 10px 12px;
    }

    .info-card {
        padding: 16px;
    }

    .info-card h3 {
        font-size: 15px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-logo {
        width: 32px;
    }

    section {
        padding: 32px 0;
    }

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

    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .header,
    .hero-buttons,
    .cta-button,
    .hamburger,
    .progress-bar,
    .contact-form,
    .skip-to-content {
        display: none;
    }

    body {
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}
    .hero .container {
        padding: 0 22px;
    }
