/* ===== GLOBAL STYLES ===== */
:root {
    --dark-bg: #121212;
    --dark-secondary: #1a1a2e;
    --neon-blue: #4cc9f0;
    --neon-magenta: #f72585;
    --neon-purple: #7209b7;
    --text-light: #f8f9fa;
    --text-gray: #adb5bd;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .accent {
    color: var(--neon-blue);
    position: relative;
}

.section-title .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-magenta);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
}

[data-aos] {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

section:nth-child(even) {
    background-color: var(--dark-secondary);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: var(--neon-blue);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.5);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.8);
}

/* ===== HERO SECTION ===== */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    position: relative;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content .accent {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(247, 37, 133, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(247, 37, 133, 0.8);
}

.cta-button i {
    margin-left: 10px;
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* ===== SERVICES SECTION ===== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--neon-blue);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

/* ===== WORKS SECTION ===== */
#works {
    background-color: #121212;
    padding: 100px 0;
    position: relative;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.work-card {
    background-color: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(10, 255, 255, 0.2);
}

.work-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-card h3 {
    color: #0affff;
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    font-weight: 700;
}

.work-card p {
    color: #ffffff;
    margin: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.works-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(10, 255, 255, 0.2);
}

.works-cta p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9), rgba(26, 26, 46, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-overlay p {
    color: var(--neon-blue);
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.process-step {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
}

.step-icon i {
    font-size: 1.8rem;
    color: white;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-gray);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.5);
}

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

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    color: var(--neon-magenta);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--neon-blue);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(18, 18, 18, 0.98)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.5);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.5;
}

.contact-form-container {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-header p {
    color: var(--text-gray);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(76, 201, 240, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(173, 181, 189, 0.5);
}

.privacy-policy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-policy input {
    width: auto;
}

.privacy-policy label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.submit-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(247, 37, 133, 0.8);
}

.submit-button i {
    margin-left: 10px;
}

/* ===== PRICING SECTION ===== */
#pricing {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(18, 18, 18, 0.98)), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.pricing-campaign {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(18, 18, 18, 0.9));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(76, 201, 240, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pricing-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 201, 240, 0.1), rgba(114, 9, 183, 0.1));
    z-index: -1;
}

.campaign-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0 15px 0 15px;
}

.pricing-campaign h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.accent-text {
    color: var(--neon-magenta);
    font-weight: 900;
    text-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.1);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: rgba(76, 201, 240, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(18, 18, 18, 0.9));
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0 15px 0 15px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(76, 201, 240, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

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

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: var(--neon-blue);
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.3);
    transition: var(--transition);
    width: 100%;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(76, 201, 240, 0.6);
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    padding: 15px;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(76, 201, 240, 0.1);
}

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

/* ===== FOOTER ===== */
footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(76, 201, 240, 0.1);
}

.footer-top {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(18, 18, 18, 0.98));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo h2 .accent {
    color: var(--neon-blue);
    -webkit-text-fill-color: var(--neon-blue);
    text-fill-color: var(--neon-blue);
}

.footer-logo p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, var(--neon-magenta), var(--neon-purple));
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
    border-color: transparent;
}

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

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-light);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

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

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--neon-blue);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--neon-blue);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: rgba(18, 18, 18, 0.98);
    padding: 20px 0;
    border-top: 1px solid rgba(76, 201, 240, 0.1);
}

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

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

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

.footer-bottom-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    header .container {
        display: flex;
        justify-content: center;
        position: relative;
        align-items: center;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-steps,
    .service-cards,
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/* ヒーロー見出しのテキストの色を白に戻す */
section#hero h1 {
    color: #fff !important;
}

/* h2にも同じスタイルを適用（現在のマークアップに合わせて） */
section#hero h2 {
    color: #fff !important;
}

/* プロトタイプ作成提出と納品完了をブランドピンクの文字にする */
.highlight {
    color: #ff0080;
}

/* モバイル用の改行制御 */
.mobile-br {
    display: none;
}
@media (max-width: 480px) {
    .mobile-br {
        display: inline !important;
    }
}

/* スマホ表示のみに適用されるスタイル */
@media (max-width: 480px) {
    /* ヒーロー見出しのテキストが見切れないように調整 */
    section#hero h1 {
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    /* h2にも同じスタイルを適用（現在のマークアップに合わせて） */
    section#hero h2 {
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    /* 2. ナビゲーションのハンバーガーアイコンを画面左端に寄せる */
    header .hamburger {
        margin-left: 1rem;
        margin-right: auto;
    }
    
    /* 3. 納品完了の末尾が改行されるのを防止 */
    #hero .no-break {
        white-space: nowrap;
    }
    
    /* 4. 無料相談するボタンと正式依頼はこちらボタンの間に行間を空ける */
    #hero .btn-consult {
        display: block;
        margin: 0.75rem auto;
    }
}
