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

*,
*::before,
*::after {
    border-radius: 0 !important;
}

:root {
    --primary: #0052CC;
    --primary-dark: #003D99;
    --primary-light: #0065FF;
    --secondary: #3374DB;
    --nav-height: 76px;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F8FAFB;
    --border-light: #E0E6ED;
    --shadow: 0 2px 8px rgba(0, 82, 204, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 82, 204, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 82, 204, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e7ff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: #60a5fa;
}

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

.nav-links li {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: rgba(226, 232, 240, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    padding: 0.6rem 1.35rem;
    display: flex;
    align-items: center;
    border-radius: 999px;
    position: relative;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.2s;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover {
    color: #f8fafc;
}

.nav-links a.active {
    background: linear-gradient(130deg, rgba(96, 165, 250, 0.3), rgba(99, 102, 241, 0.45));
    color: #f8fafc;
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.35);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 35%, #0f172a 100%);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 45%),
                radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.2), transparent 55%);
    z-index: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.85) 35%, rgba(30, 58, 138, 0.6) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-glass {
    position: absolute;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(22px);
    opacity: 0.85;
    pointer-events: none;
}

.hero-glass-one {
    width: 220px;
    height: 220px;
    top: 8%;
    right: 12%;
}

.hero-glass-two {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 8%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.85);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding-top: 1rem;
}

.stat {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    backdrop-filter: blur(18px);
}

.stat strong {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.stat span {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.7);
}

.hero-card {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(18px);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-body h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #e2e8f0;
}

.card-body p {
    color: rgba(226, 232, 240, 0.75);
}

.card-body ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.card-body li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(226, 232, 240, 0.8);
}

.card-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #60a5fa, #f472b6);
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.15);
}

.btn-primary {
    background: linear-gradient(120deg, #60a5fa 0%, #2563eb 100%);
    color: #f8fafc;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.btn-secondary:hover {
    background: rgba(148, 163, 184, 0.15);
    color: #f8fafc;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    display: grid;
    gap: 1rem;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.35;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.inline-link::after {
    content: "→";
    transition: transform 0.2s;
}

.inline-link:hover::after {
    transform: translateX(4px);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

/* Service Showcase */
.services {
    padding-top: 6rem;
}

.service-showcase {
    display: grid;
    gap: 2.5rem;
}

.service-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 32px 60px rgba(15, 23, 42, 0.08);
}

.panel-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.panel-body {
    padding: 2.75rem 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.panel-body h3 {
    font-size: 1.85rem;
    color: var(--primary);
}

.panel-body p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.panel-body ul {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    font-size: 1rem;
}

.panel-body li {
    position: relative;
    padding-left: 1.75rem;
}

.panel-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, #38bdf8, #6366f1);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

/* Contact Page */
.contact-options .section-heading {
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 2.25rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.contact-card h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
}

.contact-card p {
    color: var(--text-light);
}

.contact-icon {
    font-size: 2rem;
}

.contact-section {
    padding-top: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.contact-intro {
    display: grid;
    gap: 1.25rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.08);
}

.contact-intro h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

.contact-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-intro ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.contact-intro li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-medium);
}

.contact-intro li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.contact-form-wrapper {
    display: grid;
}

/* Process */
.process-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(203, 213, 225, 0.6);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.9rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.35));
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

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

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

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

.service-card ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-medium);
}

.service-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    opacity: 0.85;
}

/* Logo Row */
.logo-row {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 2.5rem 1.5rem;
}

.logo-row-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    filter: grayscale(1) contrast(1.1);
}

.logo-strip img {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    height: auto;
    opacity: 0.75;
}

.logo-placeholder {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Page Header */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--primary-dark);
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Features List */
.features-list {
    list-style: none;
    max-width: 900px;
    margin: 2rem auto;
    display: grid;
    gap: 1.5rem;
}

/* Work Highlights */
.work {
    padding-top: 6rem;
}

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

.work-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
}

.work-card > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-card-logo {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    background: #f3f4f6;
    padding: 1rem;
    overflow: hidden;
}

.work-card-logo img {
    max-width: 65%;
    max-height: 100%;
    height: auto;
}

.work-card-logo span {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.work-card-woodwright {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
}

.work-card-global {
    background: linear-gradient(135deg, #dbeafe, #60a5fa);
}

.work-card-summit {
    background: linear-gradient(135deg, #e0f2fe, #38bdf8);
}

.work-card-body {
    padding: 2rem;
    display: grid;
    gap: 0.85rem;
}

.work-card-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.work-card-body p {
    color: var(--text-light);
}

.tag {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    text-transform: uppercase;
}

.tag-secondary {
    background: rgba(236, 72, 153, 0.12);
    color: #be185d;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 22px;
    border: 1px solid rgba(203, 213, 225, 0.6);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
    padding: 2.25rem;
    display: grid;
    gap: 1.25rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-card figcaption {
    display: grid;
    gap: 0.35rem;
    color: var(--text-light);
}

.testimonial-card strong {
    color: var(--text-dark);
    font-weight: 700;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.35);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list li {
    padding: 1.75rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.2s;
}

.features-list li:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.features-list li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.features-list strong {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #111827 0%, #1f2937 80%);
    color: #f8fafc;
}

.cta-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.cta-copy {
    display: grid;
    gap: 1rem;
}

.cta-copy h2 {
    font-size: clamp(2.25rem, 4vw, 2.85rem);
    letter-spacing: -0.02em;
}

.cta-copy p {
    color: rgba(226, 232, 240, 0.7);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
    background: var(--white);
}

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

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

.name-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-submit:hover {
    background: var(--primary-dark);
}

/* Success Message */
.success-message {
    display: none;
    background: #E6F4EA;
    border: 2px solid #1E8E3E;
    color: #137333;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.success-message.show {
    display: block;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 4px solid var(--primary);
}

footer p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-websites .hero-card {
        display: none;
    }

    .hero-websites .hero-inner {
        gap: 1.5rem;
    }

    nav {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        top: 0;
        padding-top: env(safe-area-inset-top, 0px);
    }

    body {
        padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    }

    .nav-container {
        padding: 0 1.5rem;
        height: var(--nav-height);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        flex-direction: column;
        backdrop-filter: blur(18px);
        box-shadow: 0 24px 36px rgba(15, 23, 42, 0.35);
        border: 1px solid rgba(99, 102, 241, 0.25);
        border-top: none;
        padding: 1.25rem 0;
        gap: 0.5rem;
    }

    .nav-links li {
        width: 100%;
        border-right: none;
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.9rem 1.2rem;
        margin: 0;
        text-align: center;
    }

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

    .mobile-toggle {
        display: block;
        color: #e0e7ff;
    }

    .hero {
        padding: 3.25rem 1.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 2rem;
    }

    .hero-copy {
        text-align: center;
        align-items: center;
    }

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

    .hero p {
        font-size: 1.125rem;
        margin: 0 auto;
    }

    .hero-stats {
        display: none;
    }

    .hero-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

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

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
    }

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

    .service-panel {
        grid-template-columns: 1fr;
    }

    .panel-media img {
        min-height: 220px;
    }

    .logo-strip {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.75rem;
    }

    .work-card img {
        height: 180px;
    }

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

    .name-group {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-intro {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

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

    .hero-glass {
        display: none;
    }

    .section {
        padding: 3rem 1rem;
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .features-list li {
        padding: 1.25rem 1.5rem;
    }

    .contact-intro {
        padding: 1.75rem;
    }
}