/* ========================================
   合資会社ウェブルシステム - Corporate Site
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-navy: #1B2D4F;
  --color-navy-light: #2A4A7F;
  --color-teal: #0EA5A3;
  --color-teal-light: #14C8C5;
  --color-coral: #E8734A;
  --color-green: #34B369;

  --color-bg: #FFFFFF;
  --color-bg-light: #F8F9FC;
  --color-bg-surface: #EEF1F6;
  --color-text: #2C3345;
  --color-text-secondary: #6B7280;
  --color-border: #D1D5DB;

  /* Typography */
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Inter", sans-serif;

  /* Layout */
  --max-width: 1120px;
  --header-height: 72px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Spacing */
  --section-padding: 96px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1B2D4F 0%, #2A4A7F 50%, #0EA5A3 100%);
  --gradient-cta: linear-gradient(135deg, #0EA5A3 0%, #14C8C5 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-ja);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-navy);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.sp-only {
  display: none;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-cta);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  transition: color 0.3s var(--ease);
}

.header.is-scrolled .logo-text {
  color: var(--color-navy);
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 0.25s var(--ease);
  margin-top: 2px;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header.is-scrolled .nav-link {
  color: var(--color-text);
}

.header.is-scrolled .nav-link:hover {
  color: var(--color-teal);
}

.nav-link--cta {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header.is-scrolled .nav-link--cta {
  background: var(--color-teal);
  color: #fff;
  border-color: var(--color-teal);
}

.header.is-scrolled .nav-link--cta:hover {
  background: var(--color-teal-light);
  color: #fff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.header.is-scrolled .menu-toggle-bar {
  background: var(--color-navy);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(14, 165, 163, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42, 74, 127, 0.2) 0%, transparent 50%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.hero-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-ja);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary-white {
  background: #fff;
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary-white:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

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

.btn-service {
  width: 100%;
  padding: 12px 24px;
  font-size: 0.875rem;
  border: 2px solid;
  background: transparent;
}

.btn-service--teal {
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn-service--teal:hover {
  background: var(--color-teal);
  color: #fff;
}

.btn-service--navy {
  color: var(--color-navy-light);
  border-color: var(--color-navy-light);
}

.btn-service--navy:hover {
  background: var(--color-navy-light);
  color: #fff;
}

.btn-service--green {
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn-service--green:hover {
  background: var(--color-green);
  color: #fff;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.btn-service:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-submit {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  padding: 16px 32px;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 1rem;
  border: none;
}

.btn-submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(14, 165, 163, 0.35);
}

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(14, 165, 163, 0.15);
  color: #0ea5a3;
  font-weight: 500;
  text-align: center;
}

.form-error {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  font-weight: 500;
  text-align: center;
}

/* --- Sections --- */
.section {
  padding: var(--section-padding) 0;
}

.section--light {
  background: var(--color-bg-light);
}

.section--dark {
  background: var(--color-navy);
}

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

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

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-top: 12px;
}

.section-header--light .section-title {
  color: #fff;
}

.section-header--light .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Problem --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.problem-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}

.problem-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--color-teal);
}

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

.problem-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.problem-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  border: 1px solid var(--color-bg-surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card--teal .service-card-top { background: var(--color-teal); }
.service-card--navy .service-card-top { background: var(--color-navy-light); }
.service-card--green .service-card-top { background: var(--color-green); }

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.service-card--teal .service-icon { color: var(--color-teal); }
.service-card--navy .service-icon { color: var(--color-navy-light); }
.service-card--green .service-icon { color: var(--color-green); }

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

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.8;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  opacity: 0.5;
}

.service-card--navy .service-features li::before { background: var(--color-navy-light); }
.service-card--green .service-features li::before { background: var(--color-green); }

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-bg-surface);
}

.price-label {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

.price-value {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
}

.price-value--free {
  color: var(--color-green);
}

.price-suffix {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* --- Strengths --- */
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.strength-item {
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--color-teal);
}

.strength-number {
  display: block;
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.strength-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.strength-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- Company --- */
.company-table {
  max-width: 720px;
  margin: 0 auto;
  border-top: 2px solid var(--color-navy);
}

.company-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border);
}

.company-row dt {
  padding: 16px 20px 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-bg-light);
}

.company-row dd {
  padding: 4px 20px 16px;
  font-size: 0.9375rem;
  line-height: 1.8;
  background: var(--color-bg-light);
}

/* --- Contact --- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.required {
  color: var(--color-coral);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-ja);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  line-height: 1.6;
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 163, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

.footer .logo-text {
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-nav a,
.footer-services a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover,
.footer-services a:hover {
  color: var(--color-teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 500;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-teal);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for service cards */
.services-grid [data-animate]:nth-child(1) { transition-delay: 0ms; }
.services-grid [data-animate]:nth-child(2) { transition-delay: 120ms; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 240ms; }

.problem-grid [data-animate]:nth-child(1) { transition-delay: 0ms; }
.problem-grid [data-animate]:nth-child(2) { transition-delay: 100ms; }
.problem-grid [data-animate]:nth-child(3) { transition-delay: 200ms; }

.strengths-grid [data-animate]:nth-child(1) { transition-delay: 0ms; }
.strengths-grid [data-animate]:nth-child(2) { transition-delay: 80ms; }
.strengths-grid [data-animate]:nth-child(3) { transition-delay: 160ms; }
.strengths-grid [data-animate]:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   Responsive
   ======================================== */

/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .company-row {
    flex-direction: row;
  }

  .company-row dt {
    min-width: 160px;
    max-width: 160px;
    padding: 20px 24px;
  }

  .company-row dd {
    padding: 20px 24px;
    background: transparent;
  }

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

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

  .section {
    padding: var(--section-padding) 0;
  }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* --- Mobile (max 767px) --- */
@media (max-width: 767px) {
  :root {
    --section-padding: 64px;
    --header-height: 64px;
  }

  .sp-only {
    display: inline;
  }

  /* Mobile menu */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 999;
  }

  .nav-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 24px;
  }

  .nav-link--cta {
    margin-top: 16px;
    font-size: 1rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-bar {
    background: #fff;
  }

  /* Hero */
  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Section spacing */
  .section-header {
    margin-bottom: 40px;
  }

  /* Service cards */
  .service-card {
    padding: 28px 24px 24px;
  }

  /* Strengths */
  .strength-item {
    padding-left: 20px;
  }

  /* Company */
  .company-table {
    max-width: 100%;
  }

  /* Contact */
  .contact-form {
    max-width: 100%;
  }

  /* Back to top */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* --- Touch device --- */
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .btn:hover {
    transform: none;
  }
}
