/* ============================================
   NOTA - IT/Digital Staffing Company
   Tech Modern: Indigo + White
   ============================================ */

:root {
  --indigo: #3F51B5;
  --indigo-dark: #303F9F;
  --indigo-light: #E8EAF6;
  --indigo-50: #F5F5FF;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #5C5C7A;
  --text-muted: #9696AD;
  --border: #E0E0EE;
  --shadow-sm: 0 1px 3px rgba(63,81,181,0.06);
  --shadow-md: 0 4px 20px rgba(63,81,181,0.08);
  --shadow-lg: 0 12px 40px rgba(63,81,181,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-en: 'Inter', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-ja);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--indigo-dark);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sample Banner ── */
.sample-banner {
  background: var(--indigo);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.sample-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  margin-top: 37px;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-text {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: 0.04em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--indigo);
  transition: var(--transition);
}

.nav-desktop a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--indigo);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
}

.nav-cta:hover {
  background: var(--indigo-dark);
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.nav-mobile-cta {
  background: var(--indigo);
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 8px;
  margin-top: 8px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 37px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.82) 0%, rgba(63, 81, 181, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 40px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
}

.btn-primary:hover {
  background: var(--indigo-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63,81,181,0.3);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.btn-full {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ── Animate ── */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Common ── */
.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

.section-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-wrap {
  position: relative;
  z-index: 2;
}

.about-icon-wrap svg {
  width: 240px;
  height: 240px;
}

.about-deco-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--indigo-light) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--indigo-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 14px;
  font-weight: 500;
}

/* ── Skills ── */
.skills {
  background: var(--white);
}

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

.skill-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.skill-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.skill-card-header h3 {
  font-size: 16px;
  font-weight: 600;
}

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

.skill-tags span {
  display: inline-block;
  padding: 4px 12px;
  background: var(--indigo-light);
  color: var(--indigo-dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.01em;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  margin-bottom: 20px;
}

.service-num {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 800;
  color: var(--indigo-light);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 13px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--indigo);
  border-radius: 50%;
}

/* ── Remote ── */
.remote {
  background: var(--white);
}

.remote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.remote-lead {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.9;
}

.remote-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.remote-feature {
  display: flex;
  gap: 16px;
}

.remote-feature-num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
  width: 36px;
  height: 36px;
  background: var(--indigo-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.remote-feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.remote-feature p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.remote-visual {
  position: relative;
}

.remote-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.remote-visual-deco {
  position: absolute;
  bottom: -20px;
  left: -20px;
}

.remote-stat-float {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.remote-stat-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}

.remote-stat-num small {
  font-size: 18px;
}

.remote-stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── Numbers ── */
.numbers {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  color: #fff;
}

.numbers .section-label {
  color: rgba(255,255,255,0.7);
}

.numbers .section-title {
  color: #fff;
}

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

.number-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.number-value {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.number-value small {
  font-size: 18px;
  font-weight: 600;
  margin-left: 2px;
}

.number-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ── Flow ── */
.flow-steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: var(--indigo-light);
}

.flow-step {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  position: relative;
}

.flow-step-num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.flow-step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.flow-step-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Company ── */
.company {
  background: var(--white);
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
}

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

.company-table th,
.company-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.company-table th {
  font-weight: 600;
  color: var(--text);
  width: 160px;
  background: var(--indigo-50);
  white-space: nowrap;
}

.company-table td {
  color: var(--text-light);
  line-height: 1.8;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: var(--indigo-light);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
}

.sp-only { display: none; }

/* ── FAQ ── */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.faq-icon {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  padding-top: 2px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  padding-left: 42px;
}

/* ── Contact ── */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.required {
  font-size: 11px;
  color: #E53935;
  background: #FFEBEE;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(63,81,181,0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239696AD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ── Footer ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-nav-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
}

.footer-credit a {
  color: rgba(255,255,255,0.6);
}

.footer-credit a:hover {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }

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

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

  .remote-grid { grid-template-columns: 1fr; gap: 40px; }
  .remote-visual { order: -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero-content { padding: 100px 20px 60px; }

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

  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .number-value { font-size: 36px; }

  .company-table th { width: 120px; }

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

  .contact-form { padding: 28px; }

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

  .remote-visual img { height: 320px; }

  .sp-hide { display: none; }
  .sp-only { display: inline; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-content p br { display: none; }

  .faq-a { padding-left: 0; }
  .faq-q { gap: 10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-card { padding: 20px 12px; }
  .number-value { font-size: 32px; }

  .service-card { padding: 28px 24px; }
  .service-num { font-size: 48px; }

  .flow-step { gap: 16px; }
  .flow-steps::before { left: 19px; }
  .flow-step-num { width: 40px; height: 40px; font-size: 12px; }
}
