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

:root {
    --primary-blue: #4F46E5;
    --primary-purple: #7C3AED;
    --primary-orange: #F97316;
    --primary-green: #22C55E;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-blue);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-line {
    background: #06C755;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-line:hover {
    background: #05B04C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-signup {
    background: var(--primary-blue);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #4338CA;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: var(--bg-light);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #4338CA;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #06C755;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #06C755;
}

.btn-secondary:hover {
    background: #05B04C;
    border-color: #05B04C;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.badge i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape-orange {
    position: absolute;
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -20px;
    left: 50px;
    animation: float 6s ease-in-out infinite;
}

.shape-purple {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 0;
    right: 30px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-blue {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
    top: 50%;
    right: 0;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-person {
    position: relative;
    z-index: 1;
}

.person-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
}

.card-globally {
    top: 20px;
    right: 20px;
}

.card-check {
    bottom: 100px;
    left: 20px;
}

.card-share {
    bottom: 20px;
    right: 50px;
}

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

.floating-card .icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.icon-yellow {
    background: #FEF3C7;
    color: #F59E0B;
}

.icon-green {
    background: #D1FAE5;
    color: #10B981;
}

.icon-pink {
    background: #FCE7F3;
    color: #EC4899;
}

.floating-card .text {
    font-size: 0.85rem;
    font-weight: 600;
}

.floating-card .subtext {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-icon.blue {
    background: #EEF2FF;
    color: var(--primary-blue);
}

.service-icon.purple {
    background: #F3E8FF;
    color: var(--primary-purple);
}

.service-icon.orange {
    background: #FFF7ED;
    color: var(--primary-orange);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

/* Tab Container */
.tab-container {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    border-bottom: 2px solid #E2E8F0;
}

.tab-button {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.05);
}

.tab-button.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Search Results Table */
.search-results {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
}

.search-results h4 {
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.results-table-container {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.results-table thead {
    background: var(--primary-blue);
    color: white;
}

.results-table th,
.results-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.results-table tbody tr {
    transition: background 0.2s ease;
    cursor: pointer;
}

.results-table tbody tr:hover {
    background: rgba(79, 70, 229, 0.05);
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

.results-table input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 40px 0 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: #EF4444;
    margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

input:read-only {
    background: #F1F5F9;
    cursor: not-allowed;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
}

small a {
    color: var(--primary-blue);
    text-decoration: none;
}

small a:hover {
    text-decoration: underline;
}

.input-with-button {
    display: flex;
    gap: 12px;
}

.input-with-button input {
    flex: 1;
}

.btn-search {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search:hover {
    background: #4338CA;
}

.btn-search:disabled {
    background: #94A3B8;
    cursor: not-allowed;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.05);
}

input[type="radio"],
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.input-addon {
    font-weight: 600;
    color: var(--text-gray);
    white-space: nowrap;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.blue {
    background: #EEF2FF;
    color: var(--primary-blue);
}

.feature-icon.purple {
    background: #F3E8FF;
    color: var(--primary-purple);
}

.feature-icon.orange {
    background: #FFF7ED;
    color: var(--primary-orange);
}

.feature-icon.green {
    background: #D1FAE5;
    color: #10B981;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.features-image {
    position: relative;
}

.features-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--text-light);
}

.stats-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    bottom: -20px;
    right: 20px;
}

.stats-card .label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stats-card .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stats-card .change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #10B981;
    margin-left: 8px;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-image.orange {
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

.blog-image.blue {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-tag {
    background: #EEF2FF;
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-image {
    display: flex;
    justify-content: center;
}

.cta-phones {
    position: relative;
    width: 300px;
    height: 400px;
}

.phone {
    position: absolute;
    width: 180px;
    height: 350px;
    background: #1a1a2e;
    border-radius: 30px;
    border: 3px solid #333;
    overflow: hidden;
}

.phone:first-child {
    left: 0;
    top: 30px;
    z-index: 1;
}

.phone:last-child {
    right: 0;
    top: 0;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2d2d44 0%, #1a1a2e 100%);
    padding: 40px 15px 20px;
}

.phone-content {
    background: #252538;
    border-radius: 15px;
    padding: 15px;
    height: 100%;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: #94A3B8;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #06C755;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    background: #05B04C;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 3px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #0F172A;
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 0.85rem;
}

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

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .features-container,
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons,
    .trust-badges {
        justify-content: center;
    }

    .hero-image {
        margin-top: 60px;
    }

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-line:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    border-top: 1px solid #E2E8F0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #E2E8F0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-blue);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.mobile-nav-buttons .btn-line,
.mobile-nav-buttons .btn-signup {
    text-align: center;
    justify-content: center;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

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

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

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

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

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

    .form-container {
        padding: 30px 20px;
    }

    .hero-buttons,
    .cta-form {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .person-placeholder {
        width: 300px;
        height: 300px;
        font-size: 6rem;
    }

    .shape-orange,
    .shape-purple,
    .shape-blue {
        width: 200px;
        height: 200px;
    }

    .tab-button {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .results-table {
        font-size: 0.85rem;
    }

    .results-table th,
    .results-table td {
        padding: 8px 10px;
    }
}
