/* ===========================================
   一般社団法人サーコミュニケーション
   Corporate Website - Bright & Professional
   =========================================== */

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

:root {
    --primary: #0066CC;
    --primary-dark: #004D99;
    --primary-light: #E8F2FF;
    --accent: #FF6B35;
    --accent-light: #FFF3ED;
    --dark: #1A1A2E;
    --dark-secondary: #2D2D44;
    --light: #F8FAFE;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #5A5A6E;
    --text-muted: #9999AA;
    --border: #E5E8F0;
    --shadow: 0 4px 24px rgba(0, 102, 204, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 102, 204, 0.15);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--white);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 0.8rem 4rem;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar .logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

.navbar.scrolled .logo {
    color: var(--primary);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            #0044AA 0%,
            #0066CC 30%,
            #0088EE 60%,
            #0066CC 100%);
    background-size: cover;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.03) 60px,
            rgba(255, 255, 255, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.03) 60px,
            rgba(255, 255, 255, 0.03) 61px
        );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: fadeUp 1s ease 0.3s both;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease 0.5s both;
}

.hero-accent {
    background: linear-gradient(135deg, #FFD700, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.7s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.9s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.hero-cta-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    border-radius: 1px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Survey Banner --- */
.survey-banner {
    max-width: 1200px;
    margin: -60px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.survey-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
    transition: all var(--transition);
}

.survey-inner:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.survey-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--accent);
}

.survey-icon svg {
    width: 100%;
    height: 100%;
}

.survey-text {
    flex: 1;
}

.survey-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.survey-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.survey-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all var(--transition);
}

.survey-cta:hover {
    background: #E55A25;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

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

.section-full {
    padding: 8rem 2rem;
    max-width: 100%;
}

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

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    z-index: -1;
}

.about-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: var(--dark);
}

.about-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 0.95rem;
    font-weight: 400;
}

.about-info {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.info-row {
    display: flex;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.info-label {
    font-weight: 600;
    min-width: 100px;
    color: var(--dark);
}

.info-value {
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.8;
}

/* --- Activities Grid --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.activity-card {
    padding: 2.5rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.activity-card:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.activity-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.activity-icon svg {
    width: 100%;
    height: 100%;
}

.activity-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

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

/* --- Services Section --- */
.services-section {
    background: var(--light);
}

.services-intro {
    margin-bottom: 4rem;
}

.services-concept {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary);
}

.concept-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.services-concept h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.services-concept p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 2;
}

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

.service-card {
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
}

/* --- Case Study --- */
.case-study {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.case-study-header {
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--white);
}

.case-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-study-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.accent-text {
    color: var(--accent);
}

.case-study-content {
    padding: 3rem;
}

.case-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.case-item {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.case-label {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-before .case-label {
    background: #FEE2E2;
    color: #DC2626;
}

.case-after .case-label {
    background: #DCFCE7;
    color: #16A34A;
}

.case-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.case-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.case-arrow {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.case-arrow svg {
    width: 100%;
    height: 100%;
}

/* --- Pricing Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

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

.pricing-featured {
    border-color: var(--primary);
    background: var(--white);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pricing-featured .pricing-badge {
    background: var(--primary);
    color: var(--white);
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.pricing-unit {
    font-size: 1rem;
    font-weight: 600;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    padding-left: 1.8rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
}

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

.pricing-featured .pricing-cta {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pricing-featured .pricing-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Area Info */
.area-info {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 3rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.area-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.area-info p {
    font-size: 0.95rem;
    color: var(--text);
}

/* --- Contact Section --- */
.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
}

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

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

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.contact-form .form-success {
    display: none;
    padding: 1.5rem;
    background: #DCFCE7;
    border-left: 4px solid #16A34A;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #166534;
    font-weight: 500;
}

.contact-form .form-success.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.contact-form .form-error {
    display: none;
    padding: 1.5rem;
    background: #FEE2E2;
    border-left: 4px solid #DC2626;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #991B1B;
    font-weight: 500;
}

.contact-form .form-error.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.contact-info-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.5;
}

.contact-info-text {
    color: var(--text-light);
    font-weight: 400;
    line-height: 2;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-detail-icon {
    width: 24px;
    flex-shrink: 0;
    color: var(--primary);
    padding-top: 2px;
}

/* --- Profile Section --- */
.profile-message {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--dark);
}

.profile-message-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.profile-message-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.profile-message-body p:last-child {
    margin-bottom: 0;
}

.profile-message-body strong {
    color: var(--text);
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(255, 107, 53, 0.15) 60%);
}

.profile-info-grid {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.profile-info-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
}

.profile-info-item {
    display: flex;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.profile-info-item:last-child {
    border-bottom: none;
}

.profile-info-label {
    font-weight: 600;
    min-width: 100px;
    color: var(--dark);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.profile-info-value {
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.8;
}

.profile-strengths {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.profile-strengths-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.profile-strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.profile-strength-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    border-left: 4px solid var(--accent);
    transition: all var(--transition);
}

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

.profile-strength-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.profile-strength-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.profile-strength-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.8;
}

.profile-career {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.profile-career-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.profile-timeline {
    position: relative;
    padding-left: 24px;
}

.profile-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--border));
    border-radius: 2px;
}

.profile-timeline-item {
    position: relative;
    padding: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
}

.profile-timeline-item:last-child {
    padding-bottom: 0;
}

.profile-timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid var(--light);
    border-radius: 50%;
}

.profile-timeline-period {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 120px;
}

.profile-timeline-company {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.profile-timeline-role {
    font-size: 0.8rem;
    color: var(--text-light);
    width: 100%;
    padding-left: 120px;
}

.profile-detail-link {
    text-align: center;
}

.profile-detail-link a {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
}

.profile-detail-link a:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color var(--transition);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.2rem 2rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 2rem;
    }

    .about-grid {
        gap: 4rem;
    }

    .contact-grid {
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--white) !important;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

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

    .survey-banner {
        margin-top: -40px;
    }

    .survey-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }

    .profile-strength-grid {
        grid-template-columns: 1fr;
    }

    .profile-timeline-role {
        padding-left: 0;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .section-full {
        padding: 5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .about-image-wrapper::after {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .case-before-after {
        flex-direction: column;
        gap: 1.5rem;
    }

    .case-arrow {
        transform: rotate(90deg);
    }

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

    .pricing-featured {
        transform: none;
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services-concept {
        padding: 2rem 1.5rem;
    }

    .info-row {
        flex-direction: column;
        gap: 0.3rem;
    }

    .info-label {
        min-width: auto;
    }
}
