:root {
    --blue-50: #eef6ff;
    --blue-100: #d9ecff;
    --blue-200: #b3d9ff;
    --blue-300: #7abfff;
    --blue-400: #4da6f0;
    --blue-500: #2b8dd6;
    --blue-600: #1a73b8;
    --blue-700: #145a94;
    --cyan-50: #ecfcff;
    --cyan-100: #cef4fc;
    --cyan-200: #9ae6f7;
    --cyan-300: #5ed3ed;
    --warm-white: #f7fafd;
    --ice: #eef3f9;
    --text-dark: #1c2e45;
    --text-body: #3e5168;
    --text-muted: #6e8399;
    --border-light: rgba(43, 141, 214, 0.1);
    --shadow-soft: 0 4px 20px rgba(26, 115, 184, 0.05);
    --shadow-card: 0 8px 28px rgba(26, 115, 184, 0.07);
    --shadow-hover: 0 12px 36px rgba(26, 115, 184, 0.12);
    --font-main: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    --radius: 30px;
    --radius-sm: 16px;
    --radius-xs: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    line-height: 1.8;
    background-color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== Background Decorations ===== */
.bg-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--blue-100);
    top: -180px;
    right: -80px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan-100);
    bottom: -120px;
    left: -80px;
}

/* ===== Container ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 6px;
}

.logo img,
.logo svg {
    width: auto;
    object-fit: contain;
}

.logo .logo-symbol {
    height: 60px;
    border-radius: 8px;
}

.logo .logo-name {
    height: 105px;
    width: auto;
    object-fit: contain;
    margin: -20px -18px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--blue-500);
}

.btn-primary-nav {
    background-color: var(--blue-500);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(43, 141, 214, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-nav:hover {
    background-color: var(--blue-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(43, 141, 214, 0.28);
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--blue-600);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== Hero Wave (index.html) ===== */
.hero-wave {
    position: relative;
    padding-top: 170px;
    padding-bottom: 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(43, 141, 214, 0.06) 0%, transparent 70%),
        linear-gradient(170deg, var(--warm-white) 0%, var(--blue-50) 40%, var(--cyan-50) 100%);
    text-align: center;
}

/* ウェーブ装飾 */
.hero-wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: auto;
}

/* 浮遊ドット装飾 */
.hero-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.hero-dot-1 {
    width: 12px;
    height: 12px;
    background: var(--blue-300);
    top: 25%;
    left: 10%;
    animation: dotDrift1 7s ease-in-out infinite;
}

.hero-dot-2 {
    width: 8px;
    height: 8px;
    background: var(--cyan-300);
    top: 35%;
    right: 12%;
    animation: dotDrift2 9s ease-in-out infinite;
}

.hero-dot-3 {
    width: 16px;
    height: 16px;
    background: var(--blue-200);
    bottom: 30%;
    left: 18%;
    animation: dotDrift3 8s ease-in-out infinite;
}

.hero-dot-4 {
    width: 10px;
    height: 10px;
    background: var(--cyan-200);
    top: 20%;
    right: 25%;
    animation: dotDrift1 10s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-dot-5 {
    width: 6px;
    height: 6px;
    background: var(--blue-400);
    bottom: 35%;
    right: 8%;
    animation: dotDrift2 6s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes dotDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes dotDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 10px); }
}

@keyframes dotDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, 12px); }
}

/* ヒーロー内部コンテンツ */
.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--blue-400);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-tagline::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--blue-400);
    border-radius: 1px;
}

.hero-wave h1 {
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.02rem;
    color: var(--text-body);
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 2;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 数値バッジ */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 52px;
}

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

.hero-stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--blue-500);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(43, 141, 214, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(43, 141, 214, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue-400);
    color: var(--blue-600);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--blue-500);
    color: #fff;
    border-color: var(--blue-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(43, 141, 214, 0.2);
}

.full-width {
    width: 100%;
}

/* ===== PC Only ===== */
.pc-only {
    display: inline;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    font-weight: 600;
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* ===== Strengths: Full-width stacked cards ===== */
.strength-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strength-card {
    display: flex;
    gap: 28px;
    align-items: center;
    background: #fff;
    padding: 36px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.strength-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-50), var(--cyan-50));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex-shrink: 0;
}

.strength-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.strength-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.strength-body p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ===== Service Grid (3-column cards with top icon) ===== */
.svc-circle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-circle-card {
    background: #fff;
    padding: 36px 24px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.svc-circle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.svc-circle-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--blue-50), var(--cyan-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.svc-circle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-circle-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.svc-circle-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA Block (white card + blue accent) ===== */
.cta-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 70px 60px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-400), var(--cyan-300), var(--blue-500));
}

.cta-text {
    text-align: center;
    margin-bottom: 40px;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
    color: var(--text-dark);
}

.cta-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.cta-form {
    max-width: 560px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--blue-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-row .form-input {
    margin-bottom: 0;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue-400);
}

/* ===== Service Detail Cards (services.html) ===== */
.svc-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-detail-card {
    display: flex;
    gap: 32px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-detail-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.svc-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue-50), var(--cyan-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.svc-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.svc-detail-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tag {
    background: var(--blue-50);
    color: var(--blue-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

/* Service Sub Grid */
.svc-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-sub-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-sub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.svc-sub-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-50), var(--cyan-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 16px;
}

.svc-sub-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-sub-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.svc-sub-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ===== Hero Small (sub pages) ===== */
.hero-small {
    background: linear-gradient(170deg, var(--warm-white) 0%, var(--blue-50) 100%);
    color: var(--text-dark);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-small h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-small p {
    color: var(--text-muted);
}

/* ===== Profile Table ===== */
.profile-section {
    background: var(--blue-50);
    border-radius: var(--radius);
    padding: 60px;
    border: 1px solid var(--border-light);
}

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

.profile-table tr {
    border-bottom: 1px solid var(--border-light);
}

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

.profile-table th {
    text-align: left;
    padding: 24px 0;
    width: 200px;
    color: var(--blue-600);
    font-size: 0.95rem;
    font-weight: 600;
    vertical-align: top;
}

.profile-table td {
    padding: 24px 0;
    font-size: 1rem;
    color: var(--text-body);
}

.profile-table td ul {
    padding-left: 18px;
}

.profile-table td li {
    margin-bottom: 4px;
}

/* ===== Map ===== */
.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--blue-50);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 32px;
    background: var(--ice);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-500);
}

.copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Privacy ===== */
.privacy-content h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy-content ul {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.privacy-content li {
    margin-bottom: 4px;
}

/* ===== CTA simple (services page) ===== */
.cta-simple {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
    border-radius: var(--radius);
    padding: 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-simple::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -150px;
    right: -60px;
}

.cta-simple h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-simple p {
    opacity: 0.9;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
    .header-container {
        height: 90px;
    }

    .logo .logo-symbol {
        height: 52px;
    }

    .logo .logo-name {
        height: 90px;
        width: auto;
        object-fit: contain;
        margin: -16px -12px;
    }

    .hero-wave {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero-wave h1 {
        font-size: 2.6rem;
    }

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

    .cta-card {
        padding: 50px 40px;
    }

    .strength-card {
        padding: 28px 32px;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
    .header-container {
        height: 80px;
    }

    .logo .logo-symbol {
        height: 44px;
    }

    .logo .logo-name {
        height: 80px;
        width: auto;
        object-fit: contain;
        margin: -14px -10px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Hero Wave - mobile */
    .hero-wave {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-wave h1 {
        font-size: 2rem;
        line-height: 1.45;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-dot-3, .hero-dot-5 { display: none; }

    .hero-stats {
        gap: 20px;
        margin-top: 36px;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .pc-only {
        display: none;
    }

    /* Strengths - mobile */
    .strength-card {
        flex-direction: column;
        gap: 16px;
        padding: 28px 20px;
        text-align: center;
    }

    .strength-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
        margin: 0 auto;
    }

    .strength-body h3 {
        font-size: 1.05rem;
    }

    .strength-body p {
        font-size: 0.85rem;
    }

    /* Service grid - mobile */
    .svc-circle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .svc-circle-card {
        padding: 24px 16px 20px;
    }

    .svc-circle-icon {
        width: 52px;
        height: 52px;
        padding: 11px;
        margin-bottom: 12px;
    }

    .svc-circle-card h3 {
        font-size: 0.95rem;
    }

    .svc-circle-card p {
        font-size: 0.78rem;
    }

    /* CTA - mobile */
    .cta-card {
        padding: 40px 20px;
    }

    .cta-text {
        margin-bottom: 28px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-input {
        margin-bottom: 12px;
    }

    .form-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    /* Service detail - mobile */
    .svc-detail-card {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .svc-detail-icon {
        width: 72px;
        height: 72px;
        padding: 14px;
    }

    .svc-detail-body h3 {
        font-size: 1.15rem;
    }

    .svc-detail-body p {
        font-size: 0.88rem;
    }

    .svc-tag {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    .svc-sub-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-sub-card {
        padding: 24px 20px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 36px;
    }

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

    /* Hero small - mobile */
    .hero-small {
        padding: 110px 0 48px;
    }

    .hero-small h1 {
        font-size: 1.8rem;
    }

    /* Profile - mobile */
    .profile-section {
        padding: 32px 20px;
    }

    .profile-table th {
        display: block;
        width: 100%;
        padding: 16px 0 4px;
    }

    .profile-table td {
        display: block;
        padding: 4px 0 16px;
    }

    /* CTA simple - mobile */
    .cta-simple {
        padding: 40px 20px;
    }

    .cta-simple h2 {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .btn-outline {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    /* Footer - mobile */
    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
