/*
Theme Name: CRAFT by どっとらいん
Theme URI: https://dotline.co.jp
Author: どっとらいん
Author URI: https://dotline.co.jp
Description: CRAFT by どっとらいん — HP・LP制作・保守管理サービス コーポレートテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: craft-dotline
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --gray: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --accent: #d4a843;
  --accent-light: #f0c96a;
  --text: #f0f0f0;
  --muted: #888888;
  --white: #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 6%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo { font-size: 1.1rem; font-weight: 900; letter-spacing: 1px; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.825rem; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent); color: var(--black) !important;
  padding: 0.6rem 1.4rem; font-weight: 700 !important;
  font-size: 0.825rem !important; letter-spacing: 1px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); display: block; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--black);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; font-weight: 700; color: var(--muted); letter-spacing: 1px; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .close-btn { position: absolute; top: 1.5rem; right: 6%; font-size: 1.5rem; cursor: pointer; color: var(--muted); }
.mobile-menu .nav-cta { background: var(--accent); color: var(--black) !important; padding: 0.8rem 2rem; font-size: 1rem !important; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 6% 8rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-accent-line {
  position: absolute; top: 0; left: 6%; width: 1px;
  height: 100%; background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2rem;
}
.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--accent); }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted);
  font-weight: 300; max-width: 560px; line-height: 1.8; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--accent); color: var(--black);
  padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 1px; transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent; color: var(--white);
  padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.5px; transition: border-color 0.2s;
  display: inline-block;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 6%;
  font-size: 0.75rem; color: var(--muted); letter-spacing: 2px;
  text-transform: uppercase; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 1rem;
}
.hero-scroll::after { content: ''; width: 1px; height: 50px; background: var(--muted); }
.hero-numbers {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2rem; z-index: 1;
}
.hero-num { text-align: right; }
.hero-num-val { font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-num-label { font-size: 0.7rem; color: var(--muted); letter-spacing: 1px; margin-top: 0.2rem; }

/* ========== MARQUEE ========== */
.marquee-section { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; background: var(--gray); }
.marquee-track { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.marquee-group { display: flex; gap: 2rem; white-space: nowrap; padding-right: 2rem; }
.marquee-group span { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.marquee-group span.gold { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SECTIONS COMMON ========== */
.section-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
h2.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 1rem;
}
.section-desc { color: var(--muted); font-size: 0.95rem; font-weight: 300; line-height: 1.8; max-width: 480px; }

/* ========== ABOUT ========== */
.about { padding: 8rem 6%; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--gray);
}
.about-visual-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1208 0%, #2a1e0a 50%, #111 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-text {
  font-size: clamp(4rem, 8vw, 7rem); font-weight: 900;
  letter-spacing: -3px; line-height: 0.9;
  color: rgba(212,168,67,0.15);
}
.about-badge {
  position: absolute; bottom: 2rem; right: -1rem;
  background: var(--accent); color: var(--black);
  padding: 1.2rem 1.5rem; font-weight: 900; font-size: 0.8rem; letter-spacing: 1px;
  text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; letter-spacing: -1px; }
.about-content .section-tag { margin-bottom: 1.5rem; }
.about-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; font-weight: 300; margin-bottom: 1.5rem; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.about-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; font-weight: 500; }
.about-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); flex-shrink: 0; }

/* ========== SERVICES ========== */
.services { padding: 8rem 6%; background: var(--gray); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.services-grid--3 .service-item { padding: 3.5rem 2.5rem; }
.service-item {
  background: var(--gray); padding: 2.5rem 2rem;
  border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.service-item:hover { border-color: var(--accent); background: rgba(212,168,67,0.04); }
.service-num {
  position: absolute;
  top: -1.5rem; right: -0.5rem;
  font-size: 9rem; font-weight: 900; line-height: 1;
  letter-spacing: -4px; pointer-events: none; user-select: none;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,168,67,0.12);
  text-stroke: 1.5px rgba(212,168,67,0.12);
}
.service-item:hover .service-num { -webkit-text-stroke-color: rgba(212,168,67,0.22); }
.services-grid--3 .service-item h3 { font-size: 1.25rem; }
.service-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; letter-spacing: -0.3px; position: relative; z-index: 1; }
.services-grid--3 .service-item p { font-size: 0.9rem; line-height: 1.85; }
.service-item p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; position: relative; z-index: 1; }
.service-tag-item { font-size: 0.7rem; color: var(--muted); border: 1px solid rgba(255,255,255,0.1); padding: 0.2rem 0.6rem; }

/* ========== WORKS ========== */
.works { padding: 8rem 6%; }
.works-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap; }
.works-header a { font-size: 0.825rem; color: var(--accent); display: flex; align-items: center; gap: 0.4rem; border-bottom: 1px solid transparent; transition: border-color 0.2s; padding-bottom: 1px; white-space: nowrap; }
.works-header a:hover { border-color: var(--accent); }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work-card { position: relative; overflow: hidden; cursor: pointer; }
.work-thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.work-thumb-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.25); text-transform: uppercase; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Thumbnail fallback colors */
.thumb-1 { background: linear-gradient(135deg, #0d0d1a, #1a1a2e, #6c63ff22); }
.thumb-2 { background: linear-gradient(135deg, #3d2010, #6b4226, #c9a84c22); }
.thumb-3 { background: linear-gradient(135deg, #0a0a0a, #1e0000, #e6301222); }
.thumb-4 { background: linear-gradient(135deg, #f8f8f6, #e5e5e0, #111); }
.thumb-5 { background: linear-gradient(135deg, #07070f, #1a0a2e, #ff2d7822); }
.thumb-6 { background: linear-gradient(135deg, #0d1f3c, #1a4a8a, #c8a84b22); }
.thumb-7 { background: linear-gradient(135deg, #fdf8f5, #f8e0e8, #e8a0b022); }
.thumb-8 { background: linear-gradient(135deg, #0f2041, #1e4d8c, #e8b84b22); }
.thumb-9 { background: linear-gradient(135deg, #f8fdf9, #e8f5ef, #2a7a5222); }
.thumb-10 { background: linear-gradient(135deg, #fff9f5, #ffe0cc, #ff6b3522); }
.thumb-11 { background: linear-gradient(135deg, #080808, #1a1a1a, #c9a84c22); }
.thumb-12 { background: linear-gradient(135deg, #fdfaf5, #f5ede0, #c8a05022); }

.work-overlay {
  position: absolute; inset: 0; background: rgba(10,10,10,0);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  transition: background 0.3s;
}
.work-card:hover .work-overlay { background: rgba(10,10,10,0.85); }
.work-overlay-content { opacity: 0; transform: translateY(10px); transition: 0.3s; }
.work-card:hover .work-overlay-content { opacity: 1; transform: translateY(0); }
.work-meta { padding: 1.2rem 0 0; }
.work-category { font-size: 0.7rem; color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.3rem; }
.work-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.work-sub { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.work-view-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--accent); color: var(--black); padding: 0.6rem 1.2rem; font-size: 0.8rem; font-weight: 700; margin-top: 0.8rem; }

/* ========== PROCESS ========== */
.process { padding: 8rem 6%; background: var(--gray); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header .section-tag { justify-content: center; }
.process-header .section-tag::before { display: none; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.step-num {
  width: 64px; height: 64px; border: 1px solid var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 0.8rem; font-weight: 700;
  color: var(--accent); background: var(--gray); position: relative; z-index: 1;
}
.process-step h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ========== PRICING ========== */
.pricing { padding: 8rem 6%; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-tag { justify-content: center; }
.pricing-header .section-tag::before { display: none; }
.pricing-header .section-desc { margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 640px; margin: 0 auto; }
.price-card {
  background: var(--gray); border: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative; transition: border-color 0.3s;
}
.price-card.featured { border-color: var(--accent); }
.featured-label {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 0.3rem 1rem; white-space: nowrap;
}
.price-plan { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem; }
.price-val { font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.3rem; }
.price-val span { font-size: 0.9rem; font-weight: 300; color: var(--muted); }
.price-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { font-size: 0.875rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); color: var(--muted); display: flex; align-items: center; gap: 0.5rem; font-weight: 300; }
.price-features li::before { content: '—'; color: var(--accent); font-weight: 700; }
.btn-gold-full { display: block; text-align: center; background: var(--accent); color: var(--black); padding: 0.9rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 1px; transition: background 0.2s; }
.btn-gold-full:hover { background: var(--accent-light); }
.btn-outline-full { display: block; text-align: center; background: transparent; color: var(--white); padding: 0.9rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.15); transition: border-color 0.2s; }
.btn-outline-full:hover { border-color: rgba(255,255,255,0.4); }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 8rem 0; background: var(--gray); }
.testimonials-header { margin-bottom: 4rem; padding: 0 6%; }
.testimonial { background: var(--black); border: 1px solid var(--border); padding: 2rem; }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--black); flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 700; }
.author-company { font-size: 0.75rem; color: var(--muted); }

/* PC: scrolling marquee */
.testimonials-scroll {
  overflow: hidden;
  position: relative;
}
.testimonials-scroll::before,
.testimonials-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-scroll::before { left: 0; background: linear-gradient(to right, var(--gray), transparent); }
.testimonials-scroll::after  { right: 0; background: linear-gradient(to left,  var(--gray), transparent); }
.testimonials-track {
  display: flex;
  width: max-content;
  animation: testimonials-marquee 60s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonials-group { display: flex; gap: 1.5rem; padding-right: 1.5rem; }
.testimonials-group .testimonial { width: clamp(300px, 28vw, 420px); flex-shrink: 0; }
@keyframes testimonials-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile: static 3-card grid */
.testimonials-grid { display: none; }

/* ========== CTA ========== */
.cta-section {
  padding: 8rem 6%; text-align: center;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; letter-spacing: -2px;
  margin-bottom: 1rem; line-height: 1.05; position: relative;
}
.cta-section h2 em { font-style: normal; color: var(--accent); }
.cta-section p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { font-size: 0.8rem; color: var(--muted); margin-top: 1.5rem; position: relative; }

/* ========== FOOTER ========== */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 4rem 6% 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .process-step:nth-child(n+4) { margin-top: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 1rem 5%; }

  .hero { padding: 0 5% 5rem; justify-content: center; min-height: 100vh; }
  .hero-numbers { display: none; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-gold, .btn-ghost-white { width: 100%; text-align: center; display: block; }

  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
  .about-visual { aspect-ratio: 3/2; }

  .services { padding: 5rem 5%; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  .works { padding: 5rem 5%; }
  .works-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .works-grid { grid-template-columns: 1fr; gap: 2rem; }
  .work-overlay { background: rgba(10,10,10,0.7); justify-content: center; align-items: center; }
  .work-overlay-content { opacity: 1; transform: none; text-align: center; }

  .process { padding: 5rem 5%; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-step:nth-child(5) { grid-column: 1 / -1; max-width: 200px; margin: 0 auto; }

  .pricing { padding: 5rem 5%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .price-card.featured { grid-template-columns: 1fr !important; }

  .testimonials { padding: 5rem 0; }
  .testimonials-header { padding: 0 5%; }
  .testimonials-scroll { display: none; }
  .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding: 0 5%; }

  .cta-section { padding: 5rem 5%; }
  .cta-actions { flex-direction: column; align-items: center; }

  footer { padding: 4rem 5% 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-content { padding-top: 5rem; }
}

@media (max-width: 480px) {
  .works-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step:nth-child(5) { grid-column: auto; max-width: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
