:root {
    --surface: #011427;
    --surface-low: #071b2e;
    --surface-card: rgba(13, 59, 102, 0.58);
    --surface-deep: #000f20;
    --primary: #66e2f8;
    --primary-strong: #43c6db;
    --tertiary: #7ae2e2;
    --text: #d1e4fe;
    --muted: #bcc9cc;
    --line: rgba(102, 226, 248, 0.22);
    --line-soft: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--text);
    font-family: "Hanken Grotesk", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 68% 14%, rgba(67, 198, 219, 0.18), transparent 30%),
        linear-gradient(180deg, #011427 0%, #08243b 25%, #011427 100%);
}

.container {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
}

.container>* {
    min-width: 0;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(102, 226, 248, 0.08);
    background: rgba(0, 15, 32, 0.94);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 77px;
    gap: 16px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.brand {
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: contain;
    object-position: center;
    background: rgba(102, 226, 248, 0.08);
    box-shadow: 0 0 0 1px rgba(102, 226, 248, 0.26);
}

.brand-word {
    font-weight: 900;
    text-shadow: 0 0 18px rgba(102, 226, 248, 0.22);
}

.brand-mark {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(102, 226, 248, 0.9), rgba(67, 198, 219, 0.15));
    color: #00363e;
    font-size: 14px;
    font-weight: 900;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 38px);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.nav-home-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 0;
    /* border: 1px dashed rgba(102, 226, 248, 0.45); */
    /* border-radius: 4px; */
    /* background: rgba(102, 226, 248, 0.04); */
}

.nav-home-logo img {
    width: 150px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
}

.nav a {
    color: #ffffff;
    opacity: 0.92;
    transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover {
    color: var(--primary);
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(102, 226, 248, 0.28);
    border-radius: 8px;
    background: rgba(13, 59, 102, 0.36);
    color: #ffffff;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 24;
    background: rgba(0, 15, 32, 0.58);
    backdrop-filter: blur(3px);
}

.nav-backdrop[hidden] {
    display: none;
}

.whatsapp {
    color: var(--primary);
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 900;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 8px;
    padding: 0 26px;
    border: 1px solid var(--line);
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.glass:hover,
.service-card:hover,
.equipment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 226, 248, 0.55);
}

.btn-primary {
    background: linear-gradient(135deg, #66e2f8, #43c6db);
    color: #00363e;
    box-shadow: 0 20px 42px rgba(64, 198, 219, 0.15);
}

.btn-glass {
    background: rgba(13, 59, 102, 0.34);
    color: #ffffff;
    backdrop-filter: blur(20px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: clamp(32px, 7vw, 96px);
    min-height: 880px;
    padding: 112px 0 94px;
    overflow: hidden;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(13, 59, 102, 0.28);
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Sora", sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.98;
    color: #f5fbff;
}

.accent {
    display: block;
    color: var(--primary);
}

.hero-copy {
    max-width: 670px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* .logo-panel {
			position: relative;
			display: grid;
			min-height: 456px;
			place-items: center;
			border: 1px solid rgba(102, 226, 248, 0.55);
			background:
				linear-gradient(135deg, rgba(126, 230, 230, 0.92), rgba(9, 29, 48, 0.75) 64%, rgba(0, 15, 32, 1)),
				radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.72), transparent 28%);
			box-shadow: 0 30px 80px rgba(0, 15, 32, 0.55);
		}

		.logo-panel::after {
			content: "+";
			position: absolute;
			right: 14px;
			bottom: 10px;
			color: rgba(255, 255, 255, 0.72);
			font-family: "Sora", sans-serif;
			font-size: 28px;
			font-weight: 500;
		} */

.logo-panel>img {
    display: block;
    width: min(78%, 520px);
    max-height: 82%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0, 15, 32, 0.32));
}

.tooth {
    position: relative;
    width: 144px;
    height: 146px;
    margin: 0 auto 30px;
    border-radius: 54% 46% 44% 56% / 42% 42% 70% 70%;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(0, 15, 32, 0.35);
}

.tooth::before,
.tooth::after {
    content: "";
    position: absolute;
    top: 48px;
    right: 24px;
    width: 70px;
    height: 3px;
    background: #087a92;
    box-shadow: 0 26px 0 #087a92, 0 52px 0 #087a92;
}

.tooth::after {
    right: 88px;
    width: 11px;
    height: 11px;
    border: 3px solid #087a92;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 24px 0 -3px #ffffff, 0 24px 0 0 #087a92, 0 50px 0 -3px #ffffff, 0 50px 0 0 #087a92;
}

.denttech {
    display: inline-block;
    padding: 0 14px 2px;
    background: #ffffff;
    color: #0a1830;
    font-family: Arial Black, "Sora", sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    font-style: italic;
    line-height: 1;
    transform: skew(-10deg);
    text-transform: uppercase;
}

.band {
    padding: 80px 0;
    background: rgba(0, 15, 32, 0.55);
}

.band-alt {
    background: rgba(9, 29, 48, 0.62);
}

.company-band {
    position: relative;
    overflow: hidden;
}

.company-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(102, 226, 248, 0.09), transparent 44%),
        radial-gradient(circle at 82% 16%, rgba(122, 226, 226, 0.14), transparent 28%);
    pointer-events: none;
}

.company-grid,
.mission-vision {
    position: relative;
    z-index: 1;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: start;
}

.company-story h2 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(32px, 4.6vw, 54px);
    line-height: 1.04;
}

.company-story p:not(.eyebrow) {
    max-width: 790px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 16px;
}

.company-focus {
    display: grid;
    gap: 16px;
}

.focus-card,
.mission-vision article {
    border: 1px solid rgba(102, 226, 248, 0.2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.72), rgba(0, 15, 32, 0.82));
    box-shadow: 0 22px 46px rgba(0, 15, 32, 0.22);
}

.focus-card {
    padding: 24px;
}

.focus-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.focus-card strong {
    display: block;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.18;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.mission-vision article {
    padding: 30px;
}

.mission-vision h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.15;
}

.mission-vision p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 24px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid .wide {
    grid-column: span 2;
}

.equipment-grid {
    grid-template-columns: repeat(4, 1fr);
}

.glass,
.service-card,
.equipment-card,
.cta-panel {
    border: 1px solid var(--line-soft);
    border-right-color: rgba(67, 198, 219, 0.24);
    border-bottom-color: rgba(67, 198, 219, 0.24);
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.58) 0%, rgba(7, 27, 46, 0.84) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(7, 27, 46, 0.28);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), border-color 180ms ease;
}

.glass,
.service-card {
    min-height: 188px;
    border-radius: 10px;
    padding: 26px;
    max-width: 100%;
    overflow: hidden;
}

.icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 8px;
    background: rgba(67, 198, 219, 0.12);
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.glass h3,
.service-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.glass p,
.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading .eyebrow,
.equipment-intro .eyebrow,
.company-story .eyebrow,
.mission-vision .eyebrow {
    margin-bottom: 10px;
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2,
.equipment-intro h2,
.cta-panel h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
}

.section-heading p,
.equipment-intro p,
.cta-panel p {
    color: var(--muted);
}

.equipment-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 36px;
}

.equipment-card {
    overflow: hidden;
    border-radius: 8px;
    background: #08243b;
}

.equipment-art {
    position: relative;
    display: grid;
    height: 250px;
    place-items: end center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 48%, rgba(67, 198, 219, 0.28), transparent 32%),
        linear-gradient(180deg, rgba(36, 54, 74, 0.95), rgba(0, 15, 32, 0.88));
}

.equipment-art svg {
    width: 80%;
    max-width: 190px;
    height: 160px;
    opacity: 0.88;
    filter: drop-shadow(0 18px 22px rgba(67, 198, 219, 0.16));
}

.equipment-card h3 {
    margin: 0;
    padding: 18px 22px 22px;
    color: #ffffff;
    font-size: 15px;
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 59, 102, 0.46);
    padding: 0 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.method {
    padding-bottom: 58px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-top: 82px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 226, 248, 0.75), transparent);
}

.step {
    position: relative;
    z-index: 1;
}

.step-number {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: #061d31;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.step:first-child .step-number {
    background: var(--primary);
    color: #00363e;
}

.step h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 14px;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 76px 0;
    text-align: center;
}

.metric strong {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 500;
    line-height: 1;
}

.metric span {
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-wrap {
    padding: 84px 0 92px;
}

.cta-panel {
    border-radius: 24px;
    padding: 72px 28px;
    text-align: center;
}

.cta-panel p {
    max-width: 720px;
    margin: 0 auto 34px;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 15, 32, 0.86);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(2, 1fr);
    gap: 54px;
}

.footer h4 {
    margin: 0 0 20px;
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer p,
.footer a {
    display: block;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.footer a.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-contact {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(28px, 6vw, 72px);
    padding-top: 6px;
}

.contact-address {
    max-width: 320px;
}

.footer-email-list {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.footer a.footer-email-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid rgba(209, 228, 254, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: clamp(13px, 2.8vw, 16px);
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer a.footer-email-card:hover {
    border-color: rgba(102, 226, 248, 0.54);
    background: rgba(102, 226, 248, 0.08);
    transform: translateY(-2px);
}

.mail-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    color: #c9142e;
}

.mail-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.footer-whatsapp {
    margin-top: 16px;
}

.footer-map iframe {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.copyright {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 980px) {
    .container {
        width: calc(100% - 32px);
        max-width: 760px;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 17px 0;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .header-actions .whatsapp {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 72px 0 68px;
    }

    .hero>* {
        min-width: 0;
    }

    .company-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .company-story p:not(.eyebrow) {
        max-width: 100%;
    }

    .logo-panel {
        min-height: 340px;
    }

    .feature-grid,
    .equipment-grid,
    .chip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeline {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .timeline::before {
        display: none;
    }

    .step {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .step-number {
        margin: 0;
    }

    .metrics,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

@media (max-width: 760px) {
    body.menu-open {
        overflow: hidden;
    }

    .header {
        z-index: 60;
    }

    .header-inner {
        flex-wrap: nowrap;
        min-height: 70px;
        padding: 12px 0;
    }

    .brand {
        width: auto;
        justify-content: flex-start;
        font-size: 22px;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 42;
        display: inline-flex;
        margin-left: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 36;
        display: flex;
        width: min(82vw, 320px);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 92px 22px 28px;
        border-left: 1px solid rgba(102, 226, 248, 0.22);
        background: rgba(0, 15, 32, 0.98);
        box-shadow: -28px 0 60px rgba(0, 0, 0, 0.38);
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 220ms ease, visibility 0s linear 220ms;
    }

    .nav.is-open {
        transform: translateX(0);
        visibility: visible;
        transition: transform 220ms ease;
    }

    .nav a {
        display: flex;
        align-items: center;
        min-height: 52px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 13px;
        white-space: normal;
    }

    .nav-home-logo {
        min-width: 0;
        justify-content: flex-start;
    }

    .nav-home-logo img {
        width: 150px;
        max-height: 42px;
    }
}

@media (max-width: 640px) {
    .container {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-actions .btn {
        display: none;
    }

    .brand {
        font-size: 22px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .nav-home-logo {
        min-width: 116px;
    }

    .nav-home-logo img {
        width: 116px;
        max-height: 38px;
    }

    .hero {
        padding-top: 52px;
    }

    h1 {
        font-size: 34px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-copy {
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: 16px;
        word-break: break-word;
    }

    .glass h3,
    .service-card h3 {
        font-size: 22px;
        word-break: break-word;
    }

    h1,
    .hero-copy,
    .glass h3,
    .glass p,
    .service-card h3,
    .service-card p {
        width: min(326px, calc(100vw - 64px));
        max-width: min(326px, calc(100vw - 64px));
    }

    .btn,
    .logo-panel,
    .glass,
    .service-card,
    .equipment-card,
    .cta-panel {
        width: min(358px, calc(100vw - 32px));
        max-width: min(358px, calc(100vw - 32px));
    }

    .hero-actions,
    .cta-panel .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .btn {
        width: 100%;
    }

    .feature-grid,
    .services-grid,
    .services-grid .wide,
    .equipment-grid,
    .chip-grid {
        grid-template-columns: 1fr;
        grid-column: auto;
    }

    .band {
        padding: 56px 0;
    }

    .logo-panel {
        min-height: 280px;
    }

    .company-story h2 {
        font-size: 30px;
    }

    .company-story p:not(.eyebrow),
    .mission-vision p:last-child {
        font-size: 15px;
    }

    .focus-card,
    .mission-vision article {
        padding: 22px;
    }

    .logo-panel>img {
        width: min(88%, 330px);
        max-height: 78%;
    }

    .tooth {
        width: 112px;
        height: 116px;
    }

    .denttech {
        font-size: 31px;
    }

    .equipment-art {
        height: 210px;
    }

    .cta-panel {
        padding: 46px 20px;
    }

    .footer a.footer-email-card {
        min-height: 58px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .footer-map iframe {
        min-height: 230px;
    }
}
