/* CSS Variables - Mid-Century Modern Palette */
:root {
    --primary-red: #d2361e;
    --primary-red-hover: #b8301a;
    --accent-orange: #e67e22;
    --warm-beige: #f7f4f1;
    --cream: #faf8f5;
    --slate-gray: #4a5568;
    --slate-gray-dark: #2d3748;
    --metallic-silver: #9ca3af;
    --light-gray: var(--warm-beige);
    --medium-gray: #64748b;
    --mid-century-teal: #16a085;
    --mid-century-mustard: #d4ac0d;
    --mid-century-coral: #ec7063;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    
    /* Legacy variable mapping for compatibility */
    --primary-green: var(--primary-red);
    --dark-navy: var(--slate-gray-dark);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--slate-gray-dark);
    background-color: var(--white);
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .main-logo {
    height: 250px;
    width: auto;
    max-width: 700px;
    object-fit: contain;
    background-color: transparent;
    /* Crop edges to remove outline */
    clip-path: inset(2px 2px 2px 2px);
    /* Alternative: scale slightly smaller and crop */
    transform: scale(0.98);
    filter: contrast(1.1) brightness(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 600px;
    background: linear-gradient(135deg, var(--dark-navy) 50%, var(--primary-green) 50%);
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-features span {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--primary-red-hover);
    border: none;
    position: relative;
    top: 0;
}

.cta-button:hover {
    top: 2px;
    box-shadow: 0 2px 0 var(--primary-red-hover);
    transform: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blade-placeholder {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blade-circle {
    width: 250px;
    height: 250px;
    border: 8px solid var(--white);
    border-radius: 50%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
}

.blade-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background-color: transparent;
}

/* Hero Video Styles - TV Frame */
.hero-video {
    position: relative;
    display: block;
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
}

.hero-video iframe {
    width: 100%;
    height: 368px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: none;
}

.hero-video-section {
    text-align: center;
}

.video-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.video-intro {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.highlight-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    color: var(--white);
}

/* Equipment Section */
.equipment-section {
    padding: 40px 0 60px 0;
    background-color: var(--slate-gray-dark) !important;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--mid-century-teal);
    border-radius: 50%;
    opacity: 0.1;
}

.equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.equipment-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.equipment-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.equipment-lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: block;
    margin-bottom: 0.25rem;
}

.feature-icon {
    display: none;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--white);
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.equipment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.equipment-image {
    text-align: center;
    position: relative;
}

.equipment-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.equipment-caption {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.equipment-caption p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* About Family Hardware Section */
.about-family-hardware {
    padding: 80px 0;
    background-color: var(--white);
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--cream);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--mid-century-teal);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-gray-dark);
    margin: 0;
}

.testimonial-highlight {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--primary-red);
    margin-top: 2rem;
}

.testimonial-highlight blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--slate-gray-dark);
    font-style: italic;
}

.testimonial-highlight cite {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Services Section - Updated with natural content */
.services {
    padding: 80px 0;
    background-color: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.services h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3.5rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 
        0 6px 0 var(--mid-century-teal),
        0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.service-card:hover {
    top: 3px;
    box-shadow: 
        0 3px 0 var(--mid-century-teal),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.25rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background-color: var(--primary-red);
    color: var(--white);
    position: relative;
}

.order-form-section::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.order-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.order-form-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.order-form-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.order-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-point .benefit-icon {
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.order-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.simplified-order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.simplified-order-form input {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--slate-gray-dark);
}

.simplified-order-form input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(210, 54, 30, 0.1);
}

.order-form-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.order-form-button:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(210, 54, 30, 0.3);
}

.order-form-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--cream);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--mid-century-mustard);
    border-radius: 50%;
    opacity: 0.1;
}

.pricing h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shipping-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--mid-century-teal);
}

.shipping-info h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark-navy);
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.shipping-option {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.shipping-option.highlight {
    border-color: var(--primary-green);
    background-color: var(--light-gray);
}

.shipping-option.best-value {
    border-color: var(--primary-green);
    background-color: var(--primary-green);
    color: var(--white);
}

.shipping-option h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shipping-option p {
    margin: 0;
    font-size: 0.9rem;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-table {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--mid-century-coral);
}

.pricing-table h3 {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background-color: var(--light-gray);
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-navy);
}

.pricing-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.pricing-note {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: var(--shadow);
}

.pricing-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Collapsible pricing table styles */
.pricing-table.collapsible .collapsible-header {
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-table.collapsible .collapsible-header:hover {
    background-color: #3a4755;
}

.pricing-table.collapsible .toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.pricing-table.collapsible .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pricing-table.collapsible .collapsible-content.active {
    max-height: 2000px;
}

.pricing-table.collapsible .collapsible-header.active .toggle-icon {
    transform: rotate(180deg);
}

/* Why Sharpen Section */
.why-sharpen {
    padding: 80px 0;
    background-color: var(--white);
}

.why-sharpen h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.benefit-item p {
    color: var(--medium-gray);
}

.signs-section {
    background-color: var(--cream);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 4rem;
    border-left: 6px solid var(--mid-century-teal);
    position: relative;
}

.signs-section::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--mid-century-mustard);
    border-radius: 50%;
    opacity: 0.1;
}

.signs-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark-navy);
}

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

.sign-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.sign-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.sign-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Video Section */\n.video-section {\n    padding: 80px 0;\n    background-color: var(--slate-gray-dark);\n    color: var(--white);\n}\n\n.video-section h2 {\n    text-align: center;\n    font-size: 2.5rem;\n    font-weight: 700;\n    margin-bottom: 1rem;\n    color: var(--white);\n}\n\n.video-intro {\n    text-align: center;\n    font-size: 1.1rem;\n    max-width: 700px;\n    margin: 0 auto 3rem;\n    opacity: 0.9;\n    line-height: 1.6;\n}\n\n.video-container {\n    max-width: 900px;\n    margin: 0 auto 4rem;\n}\n\n.video-wrapper {\n    position: relative;\n    width: 100%;\n    height: 0;\n    padding-bottom: 56.25%; /* 16:9 aspect ratio */\n    background-color: #000;\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: var(--shadow-lg);\n}\n\n.video-wrapper iframe {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    border: none;\n    border-radius: 12px;\n}\n\n.video-highlights {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n    gap: 2rem;\n    max-width: 800px;\n    margin: 0 auto;\n}\n\n.highlight-item {\n    text-align: center;\n    padding: 1.5rem;\n    background-color: rgba(255, 255, 255, 0.05);\n    border-radius: 12px;\n    border: 1px solid rgba(255, 255, 255, 0.1);\n}\n\n.highlight-item h4 {\n    font-size: 1.1rem;\n    font-weight: 600;\n    margin-bottom: 0.75rem;\n    color: var(--primary-red);\n}\n\n.highlight-item p {\n    font-size: 0.9rem;\n    opacity: 0.9;\n    margin: 0;\n    line-height: 1.5;\n}\n\n/* Process Section */
.process-intro {
    text-align: left;
    margin-bottom: 3rem;
}

.process-intro h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
    letter-spacing: -0.01em;
}

.process-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0;
}

.simple-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.simple-step {
    text-align: center;
    padding: 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.simple-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}

.simple-step p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.detailed-process {
    margin-bottom: 4rem;
}

.detailed-process h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quality-control {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
}

.quality-control h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.inspection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.inspection-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.inspection-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.inspection-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}
.process {
    padding: 80px 0;
    background-color: var(--dark-navy);
    color: var(--white);
}

.process h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.process-steps {
    margin-bottom: 4rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-number {
    background-color: var(--primary-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.9;
    color: var(--light-gray);
}

.blade-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.blade-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.spec-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.spec-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.spec-item p {
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--cream);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: var(--mid-century-teal);
    border-radius: 50%;
    opacity: 0.1;
}

.faq-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--mid-century-mustard);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-gray-dark);
    line-height: 1.4;
}

.faq-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 6px solid var(--mid-century-coral);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: var(--mid-century-mustard);
    border-radius: 50%;
    opacity: 0.05;
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark-navy);
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Local Services Section */
.local-services {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.local-services::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--mid-century-coral);
    border-radius: 50%;
    opacity: 0.08;
}

.local-services h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.local-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.local-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.local-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    background-color: var(--light-gray);
    padding: 0.75rem;
    border-radius: 50%;
    border: 2px solid var(--mid-century-teal);
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.benefit p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.5;
}

.local-contact {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid var(--primary-red);
}

.local-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.pickup-note {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--mid-century-mustard);
}

.pickup-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.shipping-reminder {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--mid-century-teal);
}

.shipping-reminder h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.shipping-reminder ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-reminder li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.form-note {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 1rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--cream);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-red), 
        var(--mid-century-coral), 
        var(--mid-century-mustard));
}

.contact h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--slate-gray-dark);
    letter-spacing: -0.02em;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item strong {
    color: var(--dark-navy);
    min-width: 100px;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--mid-century-mustard);
    position: relative;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.submit-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--primary-red-hover);
    position: relative;
    top: 0;
}

.submit-button:hover {
    top: 2px;
    box-shadow: 0 2px 0 var(--primary-red-hover);
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
    }
    
    .simple-steps {
        grid-template-columns: 1fr;
    }
    
    .inspection-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .local-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .video-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .equipment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .equipment-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .order-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile accordion behavior: only Carbide expanded by default */
    .pricing-table.collapsible .collapsible-content:not(.carbide-content):not(.active) {
        max-height: 0;
    }
    
    .pricing-table.collapsible .collapsible-header:not(.carbide-header):not(.active) {
        background-color: #3a4755;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-container,
    .services,
    .why-sharpen,
    .process,
    .contact {
        padding: 40px 0;
    }
}