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

:root {
    --primary-teal: #156f72;
    --dark-teal: #0f5456;
    --light-gray: #f0f0f0;
    --dark-gray: #272828;
    --medium-gray: #aaaaaa;
    --text-dark: #272828;
    --text-light: #666666;
    --background-light: #f0f0f0;
    --background-warm: #f5f3f0;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ─── Header & Navigation ─────────────────────────────────────────────────── */

header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding:1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.sign-in-btn):hover {
    color: var(--primary-teal);
}

.nav-links a:not(.sign-in-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-teal);
    transition: width 0.3s;
}

.nav-links a:not(.sign-in-btn):hover::after {
    width: 100%;
}

.sign-in-btn {
    background: var(--primary-teal);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 500;
}

.sign-in-btn:hover {
    background: var(--dark-teal);
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */

.hero {
    background: linear-gradient(135deg, rgba(39, 40, 40, 0.85) 0%, rgba(39, 40, 40, 0.85) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover;
    color: var(--white);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.98;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    flex: 0 0 auto;
}

.hero-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-feature p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact hero options */
.hero-contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.contact-option {
    text-align: center;
}

.contact-option-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

.contact-option h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-option a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-option a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.cta-primary {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(21, 111, 114, 0.3);
    margin: 0.5rem;
}

.cta-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(21, 111, 114, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--white);
    transition: all 0.3s;
    margin: 0.5rem;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
}

.cta-button {
    display: block;
    text-align: center;
    background: var(--primary-teal);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
}

/* ─── Section Shared Styles ───────────────────────────────────────────────── */

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── Value Cards ─────────────────────────────────────────────────────────── */

.value-prop {
    background: var(--background-warm);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-teal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.value-card ul {
    list-style: none;
    color: var(--text-light);
}

.value-card ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.6;
}

.value-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ─── Product Cards ───────────────────────────────────────────────────────── */

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 2.5rem;
}

.product-tag {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card h2,
.product-card h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card .description,
.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-specs {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.product-specs h3,
.product-specs h4 {
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
    font-weight: 500;
}

/* ─── Stats Bar (Products page) ───────────────────────────────────────────── */

.stats-bar {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin: -3rem auto 0;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ─── Products Overview ───────────────────────────────────────────────────── */

.products-overview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

/* ─── Process Section ─────────────────────────────────────────────────────── */

.process-section {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.process-steps {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(21, 111, 114, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Stats Section ───────────────────────────────────────────────────────── */

.stats-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stats-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.stats-section .stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stats-section .stat-item p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* ─── Testimonial ─────────────────────────────────────────────────────────── */

.testimonial-section {
    background: var(--white);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 5px solid var(--primary-teal);
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--primary-teal);
    font-weight: 600;
}

/* ─── CTA Section ─────────────────────────────────────────────────────────── */

.cta-section {
    background: linear-gradient(135deg, rgba(39, 40, 40, 0.85) 0%, rgba(39, 40, 40, 0.85) 100%),
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover;
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── About: Story Section ────────────────────────────────────────────────── */

.story-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ─── About: Differentiators ──────────────────────────────────────────────── */

.differentiators-section {
    background: var(--background-warm);
    padding: 6rem 2rem;
}

.diff-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.diff-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-teal);
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.diff-card h3 {
    font-size: 1.6rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diff-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── About: Values ───────────────────────────────────────────────────────── */

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(21, 111, 114, 0.3);
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── About: Team ─────────────────────────────────────────────────────────── */

.team-section {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.team-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.team-card__image {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-info .role {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ─── Contact Page ────────────────────────────────────────────────────────── */

.contact-main {
    max-width: 1400px;
    margin: -2rem auto 0;
    padding: 0 2rem 6rem;
    position: relative;
    z-index: 10;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.contact-info {
    background: var(--background-warm);
    padding: 4rem 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-block .icon {
    font-size: 1.5rem;
}

.info-block a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.info-block a:hover {
    color: var(--primary-teal);
}

.info-block p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.office-hours {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.office-hours h4 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.contact-form-section {
    padding: 4rem 3rem;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-section .form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ─── Forms ───────────────────────────────────────────────────────────────── */

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(21, 111, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

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

.submit-btn {
    width: 100%;
    background: var(--primary-teal);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 111, 114, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--medium-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(170, 170, 170, 0.2);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 1.5rem 4rem;
    }

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

    .hero .subtitle {
        font-size: 1.1rem;
    }

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

    .hero-features {
        gap: 2rem;
    }

    .hero-contact-options {
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header .subtitle {
        font-size: 1rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .products-grid,
    .value-grid,
    .diff-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

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

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        margin: 0.5rem auto;
    }
}