@charset "UTF-8";
/**
 * メインSCSSファイル
 * 
 * @package CorporateSite
 * @version 1.0.0
 */
/**
 * SCSS変数定義 - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * CSSリセット
 * 
 * @package CorporateSite
 * @version 1.0.0
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4A4A4B;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  color: #4A4A4B;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem 0;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #4A6FA5;
  text-decoration: none;
  background-color: transparent;
}
a:focus {
  outline: 2px solid #4A6FA5;
  outline-offset: 2px;
}

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

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

li {
  margin-bottom: 0.25rem;
}
li:last-child {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

th {
  font-weight: 500;
  color: #4A4A4B;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

input[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #dee2e6;
  margin: 2rem 0;
}

pre, code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.875rem;
}

pre {
  overflow: auto;
  background-color: #F8F9FA;
  padding: 1rem;
  border-radius: 0.375rem;
  margin: 1rem 0;
}

code {
  background-color: #F8F9FA;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

/**
 * コンテナレイアウト - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
}

/**
 * ヘッダーレイアウト - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1020;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.scrolled {
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}
.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand .logo {
  display: block;
}
.navbar-brand .logo .logo-img {
  height: 40px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
  .navbar-menu.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
}

.nav-item {
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  .nav-item {
    margin: 0.25rem 0;
    width: 100%;
  }
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #4A4A4B;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #4A6FA5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.nav-link:hover {
  color: #4A6FA5;
  text-decoration: none;
}
.nav-link:hover::after {
  width: 80%;
}
.nav-link.is-active {
  color: #4A6FA5;
}
.nav-link.is-active::after {
  width: 80%;
}
.nav-link:focus {
  outline: none;
  outline-offset: 0;
}
@media (max-width: 768px) {
  .nav-link {
    padding: 1rem;
    text-align: center;
  }
  .nav-link::after {
    display: none;
  }
}

.nav-cta {
  background-color: #4A6FA5;
  color: #ffffff !important;
  border-radius: 9999px;
  padding: 10px 18px;
  line-height: 1;
  margin-left: 0.5rem;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.nav-cta:focus {
  outline: none;
  outline-offset: 0;
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  color: #ffffff !important;
  background-color: #3d5c89;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 18px rgba(74, 111, 165, 0.25);
          box-shadow: 0 6px 18px rgba(74, 111, 165, 0.25);
}
@media (max-width: 768px) {
  .nav-cta {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.navbar-toggle {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .navbar-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar-toggle .hamburger {
  width: 25px;
  height: 3px;
  background-color: #4A4A4B;
  margin: 3px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.navbar-toggle.active .hamburger:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active .hamburger:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
          transform: rotate(-45deg) translate(7px, -6px);
}

.main-content {
  overflow-x: hidden;
}

/**
 * フッターレイアウト - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.footer {
  background: linear-gradient(135deg, #0D1D3B 0%, #4A6FA5 50%, #2E81B0 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}
.footer-section .footer-logo {
  margin-bottom: 1rem;
}
.footer-section .footer-logo .logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
}

.contact-info p {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/**
 * ボタンコンポーネント - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 8px 32px rgba(46, 129, 176, 0.3), 0 4px 16px rgba(46, 129, 176, 0.2);
          box-shadow: 0 8px 32px rgba(46, 129, 176, 0.3), 0 4px 16px rgba(46, 129, 176, 0.2);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn:focus {
  outline: 2px solid #2E81B0;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 48px rgba(46, 129, 176, 0.4), 0 6px 24px rgba(46, 129, 176, 0.3);
          box-shadow: 0 12px 48px rgba(46, 129, 176, 0.4), 0 6px 24px rgba(46, 129, 176, 0.3);
}
.btn:hover::before {
  left: 100%;
}
.btn:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn .btn-text {
  position: relative;
  z-index: 1;
}
.btn .btn-icon {
  font-size: 1.2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn.__radius {
  border-radius: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: #ffffff;
  border-color: #4A6FA5;
}
.btn-primary:hover {
  background-color: #7997c3;
  border-color: #7997c3;
}

.btn-secondary {
  background-color: #90d8ff;
  color: #4A6FA5;
  border-color: #90d8ff;
}
.btn-secondary:hover {
  background-color: #ddf3ff;
  border-color: #ddf3ff;
}

.btn-success {
  background-color: #34A853;
  color: #ffffff;
  border-color: #34A853;
}
.btn-success:hover {
  background-color: #48c76a;
  border-color: #48c76a;
}

.btn-outline {
  background-color: transparent;
  color: #4A6FA5;
  border-color: #4A6FA5;
}
.btn-outline:hover {
  background-color: #4A6FA5;
  color: #ffffff;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

/**
 * フォームコンポーネント - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4A4A4B;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #4A4A4B;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.form-control:focus {
  outline: 0;
  border-color: #4A6FA5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 111, 165, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(74, 111, 165, 0.25);
}
.form-control.error {
  border-color: #EA4335;
}
.form-control[type=email], .form-control[type=text], .form-control[type=password] {
  height: 2.5rem;
}

textarea.form-control {
  height: auto;
  resize: vertical;
}

.field-error {
  color: #EA4335;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-error {
  background-color: rgba(234, 67, 53, 0.1);
  color: #EA4335;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(234, 67, 53, 0.2);
}

/**
 * カードコンポーネント - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  background-color: #F8F9FA;
  border-bottom: 1px solid #dee2e6;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  background-color: #F8F9FA;
  border-top: 1px solid #dee2e6;
}

/**
 * ナビゲーションコンポーネント - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #4A4A4B;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-link:hover {
  color: #4A6FA5;
}
.nav-link.active {
  color: #4A6FA5;
  font-weight: 500;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.nav-tabs .nav-link:hover {
  border-color: #dee2e6;
}
.nav-tabs .nav-link.active {
  color: #4A4A4B;
  background-color: #ffffff;
  border-color: #dee2e6 #dee2e6 #ffffff;
}

.sub-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(144, 216, 255, 0.08) 0%, rgba(46, 129, 176, 0.05) 50%, rgba(74, 111, 165, 0.03) 100%);
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(46, 129, 176, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(144, 216, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(74, 111, 165, 0.06) 0%, transparent 50%);
}
.sub-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%), linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
}
.sub-hero .hero-logo {
  position: absolute;
  top: 0%;
  right: -10%;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
  -webkit-animation: slowRotate 20s linear infinite;
          animation: slowRotate 20s linear infinite;
}
.sub-hero .hero-logo .logo-mark {
  width: 600px;
  height: 600px;
  -webkit-filter: drop-shadow(0 8px 32px rgba(144, 216, 255, 0.2));
          filter: drop-shadow(0 8px 32px rgba(144, 216, 255, 0.2));
}
@media (min-width: 1480px) {
  .sub-hero .hero-logo {
    right: 10%;
  }
}
.sub-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.sub-hero .hero-content .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
}
.sub-hero .hero-content .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #4A6FA5;
  margin-bottom: 24px;
}
.sub-hero .hero-content .hero-title .title-gradient {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sub-hero .hero-content .hero-description {
  font-size: 1.2rem;
  color: #8A8A8B;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(144, 216, 255, 0.05) 0%, rgba(46, 129, 176, 0.08) 50%, rgba(74, 111, 165, 0.03) 100%);
  color: #4A4A4B;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.contact-cta .cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-cta .cta-text {
  text-align: center;
}
.contact-cta .cta-text .cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
  color: #4A6FA5;
  position: relative;
}
.contact-cta .cta-text .cta-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0, #4A6FA5);
  border-radius: 2px;
}
.contact-cta .cta-text .cta-title.__small {
  font-size: 2rem;
}
.contact-cta .cta-text .cta-description {
  font-size: 1.3rem;
  color: #8A8A8B;
  margin-bottom: 50px;
  line-height: 1.7;
  font-weight: 500;
}
.contact-cta .cta-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-cta .cta-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact-cta .cta-image img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

@media (max-width: 992px) {
  .contact-cta .cta-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .contact-cta .cta-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contact-cta .cta-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.send-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/**
 * ホームページスタイル - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  overflow: visible;
  background: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 129, 176, 0.05)), color-stop(25%, rgba(74, 111, 165, 0.04)), color-stop(50%, rgba(144, 216, 255, 0.03)), color-stop(75%, rgba(46, 129, 176, 0.02)), to(rgba(74, 111, 165, 0.01)));
  background: linear-gradient(180deg, rgba(46, 129, 176, 0.05) 0%, rgba(74, 111, 165, 0.04) 25%, rgba(144, 216, 255, 0.03) 50%, rgba(46, 129, 176, 0.02) 75%, rgba(74, 111, 165, 0.01) 100%);
  -webkit-clip-path: polygon(0 0, 80% 0, -18% 100%, 0 100%);
          clip-path: polygon(0 0, 80% 0, -18% 100%, 0 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(46, 129, 176, 0.03) 0%, transparent 50%), radial-gradient(circle at 75% 65%, rgba(74, 111, 165, 0.02) 0%, transparent 50%), -webkit-gradient(linear, left top, left bottom, from(rgba(144, 216, 255, 0.02)), color-stop(70%, transparent));
  background: radial-gradient(circle at 25% 25%, rgba(46, 129, 176, 0.03) 0%, transparent 50%), radial-gradient(circle at 75% 65%, rgba(74, 111, 165, 0.02) 0%, transparent 50%), linear-gradient(180deg, rgba(144, 216, 255, 0.02) 0%, transparent 70%);
  -webkit-clip-path: polygon(0 0, 80% 0, -18% 100%, 0 100%);
          clip-path: polygon(0 0, 80% 0, -18% 100%, 0 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: 120px 0;
  overflow: visible;
}
.hero-content {
  -webkit-animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
          animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.hero-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #4A6FA5;
}
.hero-badge .badge-icon {
  font-size: 16px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #4A6FA5;
}
.hero-title-line {
  display: block;
  -webkit-animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
          animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-title-line:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.hero-title-line:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.hero-title-line:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.hero-title-line.highlight {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #8A8A8B;
  margin-bottom: 48px;
  -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
          animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 64px;
  -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
          animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
.hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  -webkit-animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
          animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}
.hero-stats .stat-item {
  text-align: center;
}
.hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2E81B0;
  margin-bottom: 8px;
  display: block;
}
.hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #8A8A8B;
  font-weight: 500;
}
.hero-visual {
  position: relative;
  -webkit-animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
          animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
  will-change: transform, opacity;
}
.hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px) scale(0.95);
          transform: translateY(30px) scale(0.95);
  -webkit-animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
          animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
  will-change: transform, opacity;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: imageFadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
          animation: imageFadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
  will-change: transform, opacity;
}
.hero .floating-card {
  position: absolute;
  background: rgba(255, 145, 45, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 25px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 600;
  color: white;
  -webkit-box-shadow: 0 8px 32px rgba(144, 216, 255, 0.2);
          box-shadow: 0 8px 32px rgba(144, 216, 255, 0.2);
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.8);
          transform: translateY(20px) scale(0.8);
  -webkit-animation: cardFadeIn 1.2s ease-out forwards, float 8s ease-in-out infinite 3s;
          animation: cardFadeIn 1.2s ease-out forwards, float 8s ease-in-out infinite 3s;
  will-change: transform, opacity;
  z-index: 2;
}
.hero .floating-card .card-icon {
  font-size: 24px;
}
.hero .floating-card .card-text {
  font-size: 14px;
}
.hero .floating-card.card-1 {
  top: 20%;
  left: 70px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.hero .floating-card.card-2 {
  top: 45%;
  right: 5px;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.hero .floating-card.card-3 {
  bottom: 25%;
  left: 10px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.services {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
  scroll-margin-top: 80px;
}
.services .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(6, 182, 212, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(6, 182, 212, 0.4) 50%, transparent 100%);
}
.services .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.services .section-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.services .services-swiper {
  padding: 20px 0 60px;
  overflow: hidden;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.services .services-swiper .swiper {
  width: 100%;
  height: 100%;
}
.services .services-swiper .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.services .services-swiper .swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}
.services .services-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #90d8ff;
  opacity: 0.3;
}
.services .services-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #2E81B0;
}
.services .services-swiper .swiper .swiper-button-next,
.services .services-swiper .swiper .swiper-button-prev {
  color: #2E81B0;
}
.services .services-swiper .swiper .swiper-button-next:after,
.services .services-swiper .swiper .swiper-button-prev:after {
  font-size: 20px;
}
.services .services-swiper .swiper .swiper-button-next {
  right: 10px;
}
.services .services-swiper .swiper .swiper-button-prev {
  left: 10px;
}
.services .services-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.services .services-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
}
.services .services-swiper .swiper-slide .service-card {
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 400px;
  max-width: 100%;
}
.services .services-swiper .swiper-pagination {
  margin-top: 40px;
}
.services .services-swiper .swiper-button-next,
.services .services-swiper .swiper-button-prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.services .services-swiper .swiper-button-next {
  right: 10px;
}
.services .services-swiper .swiper-button-prev {
  left: 10px;
}
@media (max-width: 768px) {
  .services .services-swiper {
    padding: 20px 0 60px;
    margin: 0;
    overflow: hidden;
  }
  .services .services-swiper .swiper-slide {
    width: 100%;
    padding: 0 10px;
  }
  .services .services-swiper .service-card {
    min-height: 350px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .services .services-swiper {
    overflow: hidden;
    position: relative;
  }
  .services .services-swiper::before, .services .services-swiper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 5;
    pointer-events: none;
  }
  .services .services-swiper::before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), to(transparent));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
  }
  .services .services-swiper::after {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.8)), to(transparent));
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
  }
}
.services .service-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(144, 216, 255, 0.1);
          box-shadow: 0 8px 32px rgba(144, 216, 255, 0.1);
  border: 1px solid rgba(121, 151, 195, 0.5);
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  position: relative;
  will-change: transform;
}
.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.services .service-card:hover {
  -webkit-transform: translateY(-12px) scale(1.01);
          transform: translateY(-12px) scale(1.01);
  -webkit-box-shadow: 0 32px 80px rgba(144, 216, 255, 0.25);
          box-shadow: 0 32px 80px rgba(144, 216, 255, 0.25);
}
.services .service-card:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.services .service-card:hover .service-icon {
  -webkit-transform: scale(1.05) rotate(3deg);
          transform: scale(1.05) rotate(3deg);
}
.services .service-card:hover .service-link .link-arrow {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.services .service-card-inner {
  padding: 40px 32px;
}
.services .service-card .service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  position: relative;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
}
.services .service-card .service-icon .icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, white 0%, #94c6e3 100%);
  border-radius: 20px;
  opacity: 0.8;
}
.services .service-card .service-icon .icon-emoji {
  position: relative;
  z-index: 2;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.services .service-card .service-content .service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A6FA5;
  margin-bottom: 16px;
}
.services .service-card .service-content .service-description {
  color: #8A8A8B;
  line-height: 1.6;
  margin-bottom: 24px;
}
.services .service-card .service-content .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.services .service-card .service-content .service-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #A4A4A5;
}
.services .service-card .service-content .service-features li .feature-icon {
  color: #34A853;
  font-weight: bold;
  font-size: 16px;
}
.services .service-card .service-content .service-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #2E81B0;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.services .service-card .service-content .service-link .link-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.services .service-card .service-content .service-link:hover {
  color: #4A6FA5;
}

.about {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}
.about .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .about-text .modern-header {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .about .about-text .modern-header {
    text-align: center;
  }
}
.about .about-text .modern-header .section-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
}
.about .about-text .modern-header .section-badge .badge-icon {
  font-size: 16px;
}
.about .about-text .modern-header .section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}
.about .about-text .modern-header .section-title .title-highlight {
  color: #4A6FA5;
  position: relative;
}
.about .about-text .modern-header .section-title .title-highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0, #4A6FA5);
  border-radius: 2px;
}
.about .about-text .modern-header .section-title .title-gradient {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about .about-text .about-description {
  margin-bottom: 48px;
}
.about .about-text .about-description .description-main {
  font-size: 1.2rem;
  color: #4A4A4B;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 500;
}
.about .about-text .about-description .description-sub {
  font-size: 1.1rem;
  color: #8A8A8B;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.about .about-text .modern-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.about .about-text .modern-features .feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 20px;
  -webkit-box-shadow: 0 12px 40px rgba(144, 216, 255, 0.1), 0 4px 16px rgba(144, 216, 255, 0.05);
          box-shadow: 0 12px 40px rgba(144, 216, 255, 0.1), 0 4px 16px rgba(144, 216, 255, 0.05);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.about .about-text .modern-features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0, #4A6FA5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.about .about-text .modern-features .feature-card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  -webkit-box-shadow: 0 20px 60px rgba(144, 216, 255, 0.15), 0 8px 32px rgba(144, 216, 255, 0.1);
          box-shadow: 0 20px 60px rgba(144, 216, 255, 0.15), 0 8px 32px rgba(144, 216, 255, 0.1);
}
.about .about-text .modern-features .feature-card:hover::before {
  opacity: 1;
}
.about .about-text .modern-features .feature-card:hover .feature-icon {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
.about .about-text .modern-features .feature-card:hover .feature-number {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.about .about-text .modern-features .feature-card .feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.about .about-text .modern-features .feature-card .feature-header .feature-icon {
  font-size: 2.2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about .about-text .modern-features .feature-card .feature-header .feature-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about .about-text .modern-features .feature-card .feature-content .feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4A6FA5;
  margin-bottom: 8px;
}
.about .about-text .modern-features .feature-card .feature-content .feature-description {
  font-size: 0.9rem;
  color: #8A8A8B;
  line-height: 1.5;
  margin: 0;
}
.about .about-visual {
  position: relative;
  height: 500px;
}
.about .tech-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .tech-showcase .center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
.about .tech-showcase .center-logo .company-logo {
  width: 350px;
  height: auto;
  -webkit-filter: drop-shadow(0 8px 32px rgba(144, 216, 255, 0.3));
          filter: drop-shadow(0 8px 32px rgba(144, 216, 255, 0.3));
  max-width: 350px;
}
.about .tech-showcase .tech-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 145, 45, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  color: #4A6FA5;
  -webkit-box-shadow: 0 8px 32px rgba(144, 216, 255, 0.2);
          box-shadow: 0 8px 32px rgba(144, 216, 255, 0.2);
  -webkit-animation: orbit 20s linear infinite;
          animation: orbit 20s linear infinite;
}
.about .tech-showcase .tech-orb .tech-name {
  font-size: 12px;
  text-align: center;
}
.about .tech-showcase .tech-orb.orb-1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  top: 10%;
  left: 20%;
}
.about .tech-showcase .tech-orb.orb-2 {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  top: 20%;
  right: 10%;
}
.about .tech-showcase .tech-orb.orb-3 {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
  top: 60%;
  right: 20%;
}
.about .tech-showcase .tech-orb.orb-4 {
  -webkit-animation-delay: -9s;
          animation-delay: -9s;
  bottom: 20%;
  right: 10%;
}
.about .tech-showcase .tech-orb.orb-5 {
  -webkit-animation-delay: -12s;
          animation-delay: -12s;
  bottom: 10%;
  left: 20%;
}
.about .tech-showcase .tech-orb.orb-6 {
  -webkit-animation-delay: -15s;
          animation-delay: -15s;
  top: 40%;
  left: 10%;
}
.about .about-more {
  text-align: center;
  margin-top: 40px;
}
.about .about-more .more-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-box-shadow: 0 8px 32px rgba(46, 129, 176, 0.3), 0 4px 16px rgba(46, 129, 176, 0.2);
          box-shadow: 0 8px 32px rgba(46, 129, 176, 0.3), 0 4px 16px rgba(46, 129, 176, 0.2);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.about .about-more .more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.about .about-more .more-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 48px rgba(46, 129, 176, 0.4), 0 6px 24px rgba(46, 129, 176, 0.3);
          box-shadow: 0 12px 48px rgba(46, 129, 176, 0.4), 0 6px 24px rgba(46, 129, 176, 0.3);
}
.about .about-more .more-button:hover::before {
  left: 100%;
}
.about .about-more .more-button:hover .more-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.about .about-more .more-button .more-text {
  position: relative;
  z-index: 1;
}
.about .about-more .more-button .more-icon {
  font-size: 1.2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(46, 129, 176, 0.08) 0%, rgba(74, 111, 165, 0.06) 25%, rgba(144, 216, 255, 0.04) 50%, rgba(46, 129, 176, 0.03) 75%, rgba(74, 111, 165, 0.02) 100%);
  position: relative;
  overflow: hidden;
}
.contact .contact-parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url("../../assets/images/contact_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.15;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(46, 129, 176, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(46, 129, 176, 0.3) 50%, transparent 100%);
  z-index: 2;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-color: rgba(0, 0, 0, 0.35);
  background-size: 8px 8px;
  background-position: 0 0;
}
.contact .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.contact .section-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.contact .section-header .section-description {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  margin: 0 auto;
}
.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
@media (max-width: 992px) {
  .contact .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}
.contact .contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
}
@media (max-width: 992px) {
  .contact .contact-info {
    max-width: 100%;
    width: 100%;
  }
}
.contact .contact-info .contact-card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact .contact-info .contact-card:hover {
  -webkit-transform: translateY(-12px) scale(1.01);
          transform: translateY(-12px) scale(1.01);
  -webkit-box-shadow: 0 24px 64px rgba(144, 216, 255, 0.25);
          box-shadow: 0 24px 64px rgba(144, 216, 255, 0.25);
}
.contact .contact-info .contact-card .contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.contact .contact-info .contact-card .contact-icon .icon-emoji {
  font-size: 28px;
}
.contact .contact-info .contact-card .contact-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A6FA5;
  margin-bottom: 8px;
}
.contact .contact-info .contact-card .contact-details p {
  color: #8A8A8B;
  margin-bottom: 16px;
  line-height: 1.6;
}
.contact .contact-info .contact-card .contact-details .contact-link {
  color: #2E81B0;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact .contact-info .contact-card .contact-details .contact-link:hover {
  color: #4A6FA5;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.contact .contact-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 600px;
}
@media (max-width: 992px) {
  .contact .contact-form {
    max-width: 100%;
    width: 100%;
  }
}
.contact .contact-form .form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  padding: 48px;
  -webkit-box-shadow: 0 20px 60px rgba(144, 216, 255, 0.1), 0 8px 32px rgba(144, 216, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
          box-shadow: 0 20px 60px rgba(144, 216, 255, 0.1), 0 8px 32px rgba(144, 216, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}
.contact .contact-form .form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), color-stop(50%, #4A6FA5), to(#90d8ff));
  background: linear-gradient(90deg, #2E81B0 0%, #4A6FA5 50%, #90d8ff 100%);
  border-radius: 32px 32px 0 0;
}
.contact .contact-form .form-container .form-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A6FA5 0%, #2E81B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.contact .contact-form .form-container .form-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0, #4A6FA5);
  border-radius: 2px;
}
.contact .contact-form .form-container .form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact .contact-form .form-container .form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contact .contact-form .form-container .form .form-group {
  margin-bottom: 24px;
}
.contact .contact-form .form-container .form .form-group .form-label {
  display: block;
  font-weight: 600;
  color: #4A6FA5;
  margin-bottom: 8px;
}
.contact .contact-form .form-container .form .form-group .form-label .required {
  color: #EA4335;
}
.contact .contact-form .form-container .form .form-group .form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(121, 151, 195, 0.3);
  border-radius: 12px;
  font-size: 16px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  background: rgba(255, 255, 255, 0.8);
}
.contact .contact-form .form-container .form .form-group .form-control:focus {
  outline: none;
  border-color: #2E81B0;
  -webkit-box-shadow: 0 0 0 3px rgba(46, 129, 176, 0.1);
          box-shadow: 0 0 0 3px rgba(46, 129, 176, 0.1);
}
.contact .contact-form .form-container .form .form-group .form-control::-webkit-input-placeholder {
  color: #A4A4A5;
}
.contact .contact-form .form-container .form .form-group .form-control::-moz-placeholder {
  color: #A4A4A5;
}
.contact .contact-form .form-container .form .form-group .form-control:-ms-input-placeholder {
  color: #A4A4A5;
}
.contact .contact-form .form-container .form .form-group .form-control::-ms-input-placeholder {
  color: #A4A4A5;
}
.contact .contact-form .form-container .form .form-group .form-control::placeholder {
  color: #A4A4A5;
}
.contact .contact-form .form-container .form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact .contact-form .form-container .form .form-group select.form-control {
  cursor: pointer;
}
.contact .contact-form .form-container .form .form-actions {
  text-align: center;
  margin-top: 48px;
  position: relative;
}
.contact .contact-form .form-container .form .form-actions .btn {
  padding: 20px 56px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  border: none;
  -webkit-box-shadow: 0 8px 32px rgba(46, 129, 176, 0.3), 0 4px 16px rgba(46, 129, 176, 0.2);
          box-shadow: 0 8px 32px rgba(46, 129, 176, 0.3), 0 4px 16px rgba(46, 129, 176, 0.2);
  width: auto;
  min-width: 200px;
}
.contact .contact-form .form-container .form .form-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}
.contact .contact-form .form-container .form .form-actions .btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 40px rgba(46, 129, 176, 0.4), 0 6px 20px rgba(46, 129, 176, 0.3);
          box-shadow: 0 12px 40px rgba(46, 129, 176, 0.4), 0 6px 20px rgba(46, 129, 176, 0.3);
}
.contact .contact-form .form-container .form .form-actions .btn:hover::before {
  left: 100%;
}
.contact .contact-form .form-container .form .form-actions .btn:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

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

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes orbit {
  0% {
    -webkit-transform: rotate(0deg) translateX(150px) rotate(0deg);
            transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(150px) rotate(-360deg);
            transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}
@keyframes orbit {
  0% {
    -webkit-transform: rotate(0deg) translateX(150px) rotate(0deg);
            transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(150px) rotate(-360deg);
            transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}
@-webkit-keyframes slideInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes imageFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imageFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes cardFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.8);
            transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes cardFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.8);
            transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (max-width: 992px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-stats {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about .about-visual {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .hero .container {
    padding: 80px 0;
  }
  .hero-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .hero::before {
    -webkit-clip-path: polygon(0 0, 85% 0, -40% 100%, 0 100%);
            clip-path: polygon(0 0, 85% 0, -40% 100%, 0 100%);
  }
  .hero::after {
    display: none;
  }
  .hero .floating-card {
    display: none;
  }
  .services {
    padding: 80px 0;
  }
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about {
    padding: 80px 0;
  }
  .about .about-features .feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .contact .contact-form .form-container {
    padding: 32px 24px;
  }
}
.card-icon-img {
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-icon-img {
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon-emoji-img {
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes slowRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes slowRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.services-list {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  scroll-margin-top: 160px;
}
.services-list .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.services-list .section-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.services-list .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4A6FA5;
  margin-bottom: 24px;
}
.services-list .section-header .section-description {
  font-size: 1.1rem;
  color: #8A8A8B;
  line-height: 1.7;
}
.services-list .services-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.services-list .service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: 0;
  -webkit-box-shadow: 0 12px 40px rgba(144, 216, 255, 0.1), 0 4px 16px rgba(144, 216, 255, 0.05);
          box-shadow: 0 12px 40px rgba(144, 216, 255, 0.1), 0 4px 16px rgba(144, 216, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  scroll-margin-top: 180px;
  min-height: 400px;
  -webkit-transition: opacity 700ms ease, -webkit-transform 700ms ease, -webkit-box-shadow 300ms ease;
  transition: opacity 700ms ease, -webkit-transform 700ms ease, -webkit-box-shadow 300ms ease;
  transition: transform 700ms ease, opacity 700ms ease, box-shadow 300ms ease;
  transition: transform 700ms ease, opacity 700ms ease, box-shadow 300ms ease, -webkit-transform 700ms ease, -webkit-box-shadow 300ms ease;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.services-list .service-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 60px rgba(144, 216, 255, 0.15), 0 8px 24px rgba(144, 216, 255, 0.08);
          box-shadow: 0 20px 60px rgba(144, 216, 255, 0.15), 0 8px 24px rgba(144, 216, 255, 0.08);
}
.services-list .service-card:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.services-list .service-card.slide-in-left {
  -webkit-transform: translateX(-120px);
          transform: translateX(-120px);
}
.services-list .service-card.slide-in-right {
  -webkit-transform: translateX(120px);
          transform: translateX(120px);
}
.services-list .service-card.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
}
.services-list .service-card .service-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 40px;
  width: 50%;
  background: linear-gradient(135deg, rgba(46, 129, 176, 0.08) 0%, rgba(74, 111, 165, 0.05) 100%);
  position: relative;
}
.services-list .service-card .service-header .service-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  -webkit-filter: drop-shadow(0 4px 16px rgba(144, 216, 255, 0.2));
          filter: drop-shadow(0 4px 16px rgba(144, 216, 255, 0.2));
}
.services-list .service-card .service-header .service-image {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.services-list .service-card .service-header .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: drop-shadow(0 4px 16px rgba(144, 216, 255, 0.2));
          filter: drop-shadow(0 4px 16px rgba(144, 216, 255, 0.2));
}
.services-list .service-card .service-header .service-badge {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.services-list .service-card .service-content {
  width: 50%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 28px 28px 0;
}
.service-card:nth-child(even) .services-list .service-card .service-content {
  border-radius: 28px 0 0 28px;
}
.services-list .service-card .service-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #4A6FA5;
  margin-bottom: 20px;
  line-height: 1.3;
}
.services-list .service-card .service-description {
  color: #8A8A8B;
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1.2rem;
}
.services-list .service-card .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.services-list .service-card .service-features li {
  padding: 10px 0;
  color: #4A4A4B;
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  font-weight: 500;
}
.services-list .service-card .service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2E81B0;
  font-weight: bold;
  font-size: 1.2rem;
}
.services-list .service-card .service-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
  border-top: 2px solid rgba(144, 216, 255, 0.1);
}
.services-list .service-card .service-footer .service-price .price-label {
  font-size: 1rem;
  color: #8A8A8B;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.services-list .service-card .service-footer .service-price .price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2E81B0;
}

.development-process {
  padding: 120px 0 40px 0;
  background: linear-gradient(135deg, rgba(144, 216, 255, 0.02) 0%, rgba(46, 129, 176, 0.01) 100%);
}
.development-process .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.development-process .section-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.development-process .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4A6FA5;
  margin-bottom: 24px;
}
.development-process .section-header .section-description {
  font-size: 1.1rem;
  color: #8A8A8B;
  line-height: 1.7;
}
.development-process .process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.development-process .process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(180deg, #2E81B0, #4A6FA5);
}
.development-process .process-timeline .process-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}
.development-process .process-timeline .process-step:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.development-process .process-timeline .process-step:nth-child(odd) .step-content {
  margin-left: 80px;
}
.development-process .process-timeline .process-step:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.development-process .process-timeline .process-step:nth-child(even) .step-content {
  margin-right: 80px;
  text-align: right;
}
.development-process .process-timeline .process-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
}
.development-process .process-timeline .process-step .step-content {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 8px 32px rgba(144, 216, 255, 0.1);
          box-shadow: 0 8px 32px rgba(144, 216, 255, 0.1);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.development-process .process-timeline .process-step .step-content .step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4A6FA5;
  margin-bottom: 12px;
}
.development-process .process-timeline .process-step .step-content .step-description {
  color: #8A8A8B;
  line-height: 1.6;
  margin: 0;
}

.tech-stack {
  margin-bottom: 50px;
  padding: 120px 0;
  background: #ffffff;
}
.tech-stack .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.tech-stack .section-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.tech-stack .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4A6FA5;
  margin-bottom: 24px;
}
.tech-stack .section-header .section-description {
  font-size: 1.1rem;
  color: #8A8A8B;
  line-height: 1.7;
}
.tech-stack .tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.tech-stack .tech-category {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 32px;
  -webkit-box-shadow: 0 12px 40px rgba(144, 216, 255, 0.1), 0 4px 16px rgba(144, 216, 255, 0.05);
          box-shadow: 0 12px 40px rgba(144, 216, 255, 0.1), 0 4px 16px rgba(144, 216, 255, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}
.tech-stack .tech-category:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 16px 48px rgba(144, 216, 255, 0.15), 0 8px 24px rgba(144, 216, 255, 0.1);
          box-shadow: 0 16px 48px rgba(144, 216, 255, 0.15), 0 8px 24px rgba(144, 216, 255, 0.1);
}
.tech-stack .tech-category .category-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tech-stack .tech-category .tech-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.tech-stack .tech-category .tech-item {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tech-stack .tech-category .tech-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
}
.tech-stack .tech-stack-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tech-stack .tech-stack-swiper .tech-category {
  width: 100%;
}

@media (max-width: 992px) {
  .services-hero {
    padding: 100px 0 60px;
  }
  .services-hero .hero-logo {
    right: -15%;
  }
  .services-hero .hero-logo .logo-mark {
    width: 500px;
    height: 500px;
  }
  .services-list,
  .development-process,
  .tech-stack {
    padding: 100px 0;
  }
  .services-list .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .development-process .process-timeline::before {
    left: 20px;
  }
  .development-process .process-timeline .process-step:nth-child(odd) .step-content {
    margin-left: 60px;
  }
  .development-process .process-timeline .process-step:nth-child(even) .step-content {
    margin-right: 60px;
  }
  .development-process .process-timeline .process-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .tech-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .services-hero .hero-logo {
    right: -10%;
    top: 20%;
  }
  .services-hero .hero-logo .logo-mark {
    width: 500px;
    height: 500px;
  }
  .services-list .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .services-list .service-card .service-header {
    width: 100%;
    padding: 0;
    height: 280px;
    position: relative;
  }
  .services-list .service-card .service-header .service-image {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .services-list .service-card .service-header .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border: none;
    border-radius: 0;
    outline: none;
  }
  .services-list .service-card .service-content {
    width: 100%;
    padding: 32px 24px;
  }
  .services-list .service-card .service-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .services-hero {
    padding: 80px 0 40px;
  }
  .services-hero .hero-logo {
    right: -10%;
    top: 30%;
  }
  .services-hero .hero-logo .logo-mark {
    width: 350px;
    height: 350px;
  }
  .services-list .services-grid {
    gap: 32px;
    max-width: 100%;
  }
  .services-list .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .services-list .service-card .service-header {
    border-radius: 28px 28px 0 0;
    width: 100%;
    padding: 0;
    height: 250px;
    position: relative;
  }
  .services-list .service-card .service-header .service-icon {
    font-size: 4rem;
  }
  .services-list .service-card .service-header .service-image {
    height: 100% !important;
    margin-bottom: 0;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .services-list .service-card .service-header .service-image img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -o-object-position: center !important;
       object-position: center !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .services-list .service-card .service-header .service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
  }
  .services-list .service-card .service-content {
    width: 100%;
    padding: 32px 24px;
  }
  .services-list .service-card .service-content .service-title {
    font-size: 1.8rem;
  }
  .services-list .service-card .service-content .service-description {
    font-size: 1.1rem;
  }
  .services-list .service-card .service-content .service-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .services-list,
  .development-process,
  .tech-stack,
  .contact-cta {
    padding: 80px 0;
  }
  .services-list .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .development-process .process-timeline::before {
    display: none;
  }
  .development-process .process-timeline .process-step {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .development-process .process-timeline .process-step .step-content {
    margin: 20px 0 0 0 !important;
    text-align: center !important;
  }
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .services-list .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .services-list .service-card:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-list .service-card .service-header {
    width: 100%;
    padding: 0;
    height: 280px;
    position: relative;
  }
  .services-list .service-card .service-header .service-image {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .services-list .service-card .service-header .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border: none;
    border-radius: 0;
    outline: none;
  }
  .services-list .service-card .service-content {
    width: 100%;
    padding: 32px 28px;
  }
  .services-list .service-card .service-features {
    grid-template-columns: 1fr;
  }
}
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  margin: 50px 0;
}

/**
 * 会社概要ページスタイル
 * 
 * @package CorporateSite
 * @version 1.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero--about {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(144, 216, 255, 0.08) 0%, rgba(46, 129, 176, 0.05) 50%, rgba(74, 111, 165, 0.03) 100%);
  position: relative;
  overflow: hidden;
}
.hero--about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(46, 129, 176, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(144, 216, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(74, 111, 165, 0.06) 0%, transparent 50%);
}
.hero--about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%), linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
}
.hero--about .hero-logo {
  position: absolute;
  top: 0%;
  right: -10%;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
  -webkit-animation: slowRotate 20s linear infinite;
          animation: slowRotate 20s linear infinite;
}
.hero--about .hero-logo .logo-mark {
  width: 600px;
  height: 600px;
  -webkit-filter: drop-shadow(0 8px 32px rgba(144, 216, 255, 0.2));
          filter: drop-shadow(0 8px 32px rgba(144, 216, 255, 0.2));
}
@media (min-width: 1480px) {
  .hero--about .hero-logo {
    right: 10%;
  }
}
.hero--about .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero--about .hero-content .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
}
.hero--about .hero-content .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #4A6FA5;
  margin-bottom: 24px;
}
.hero--about .hero-content .hero-title .title-gradient {
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero--about .hero-content .hero-description {
  font-size: 1.2rem;
  color: #8A8A8B;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes slowRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4A6FA5 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4A6FA5;
  margin-bottom: 24px;
}
.section-header .section-description {
  font-size: 1.1rem;
  color: #8A8A8B;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.mission-vision {
  padding: 100px 0;
  background: #FEFEFE;
}
.mission-vision .mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 10px;
  margin-top: 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-x: hidden;
  width: 100%;
}
.mission-vision .mission-card,
.mission-vision .vision-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 40px rgba(144, 216, 255, 0.1);
          box-shadow: 0 10px 40px rgba(144, 216, 255, 0.1);
  text-align: center;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mission-vision .mission-card::before,
.mission-vision .vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0, #4A6FA5);
}
@media (min-width: 1024px) {
  .mission-vision .mission-card:hover,
  .mission-vision .vision-card:hover {
    -webkit-transform: scale(1.3) !important;
            transform: scale(1.3) !important;
    -webkit-box-shadow: 0 37px 105px rgba(144, 216, 255, 0.37);
            box-shadow: 0 37px 105px rgba(144, 216, 255, 0.37);
    z-index: 10;
  }
}
@media (min-width: 1024px) {
  .mission-vision .mission-card:hover ~ .vision-card,
  .mission-vision .vision-card:hover ~ .mission-card {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.5;
  }
  .mission-vision .mission-vision-grid:hover .mission-card:not(:hover),
  .mission-vision .mission-vision-grid:hover .vision-card:not(:hover) {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.5;
  }
}
.mission-vision .card-icon {
  margin: 0 auto 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
}
.mission-vision .card-icon .icon-img {
  width: 90px;
  height: 90px;
}
.mission-vision .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A4A4B;
  margin-bottom: 20px;
}
.mission-vision .card-description {
  color: #8A8A8B;
  line-height: 1.7;
  font-size: 1rem;
}

.company-info {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(144, 216, 255, 0.03) 0%, rgba(46, 129, 176, 0.05) 30%, rgba(74, 111, 165, 0.02) 70%, rgba(144, 216, 255, 0.04) 100%);
  position: relative;
  overflow: hidden;
}
.company-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(46, 129, 176, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(74, 111, 165, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(144, 216, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.company-info .company-details {
  max-width: 800px;
  margin: 80px auto 0;
  position: relative;
  z-index: 2;
}
.company-info .company-detail-item {
  background: white;
  border-radius: 20px;
  padding: 60px;
  -webkit-box-shadow: 0 20px 60px rgba(144, 216, 255, 0.1);
          box-shadow: 0 20px 60px rgba(144, 216, 255, 0.1);
  border: 1px solid rgba(144, 216, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  width: 100%;
  max-width: 100%;
}
.company-info .company-detail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0 0%, #4A6FA5 100%);
}
.company-info .company-detail-item .detail-item .detail-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2E81B0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.company-info .company-detail-item .detail-item .detail-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4A4A4B;
  line-height: 1.6;
  margin-bottom: 0;
}
.company-info .company-detail-item .detail-item--full {
  grid-column: 1/-1;
  text-align: left;
  padding: 20px 0;
  border-top: 1px solid rgba(144, 216, 255, 0.1);
  margin-top: 20px;
}
.company-info .company-detail-item .detail-item--full .detail-label {
  font-size: 1rem;
  margin-bottom: 16px;
}
.company-info .company-detail-item .detail-item--full .detail-value {
  font-size: 1.4rem;
  line-height: 1.8;
}

.team {
  padding: 100px 0;
  background: #FEFEFE;
}
.team .team-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.team .team-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.team .team-member {
  background: white;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 40px rgba(144, 216, 255, 0.1);
          box-shadow: 0 10px 40px rgba(144, 216, 255, 0.1);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.team .team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#2E81B0), to(#4A6FA5));
  background: linear-gradient(90deg, #2E81B0, #4A6FA5);
}
.team .team-member:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 60px rgba(144, 216, 255, 0.15);
          box-shadow: 0 20px 60px rgba(144, 216, 255, 0.15);
}
.team .team-member .member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #2E81B0;
  position: relative;
}
.team .team-member .member-avatar .avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.team .team-member .member-avatar:hover .avatar-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.team .team-member .member-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.team .team-member .member-info .member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4A4A4B;
  margin-bottom: 8px;
}
.team .team-member .member-info .member-position {
  font-size: 1rem;
  color: #2E81B0;
  font-weight: 600;
  margin-bottom: 16px;
}
.team .team-member .member-info .member-description {
  color: #8A8A8B;
  line-height: 1.6;
  font-size: 0.95rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.team .team-member a {
  text-decoration: underline;
}
.team .team-member a i {
  margin-right: 2px;
  font-size: 0.7rem;
}
.team .team-member a:hover {
  color: #2E81B0;
}

@media (max-width: 992px) {
  .hero--about {
    padding: 100px 0 60px;
  }
  .hero--about .hero-logo {
    right: -15%;
  }
  .hero--about .hero-logo .logo-mark {
    width: 500px;
    height: 500px;
  }
  .mission-vision,
  .company-info,
  .team {
    padding: 60px 0;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero--about {
    padding: 80px 0 40px;
  }
  .hero--about .hero-logo {
    right: -10%;
    top: 30%;
  }
  .hero--about .hero-logo .logo-mark {
    width: 350px;
    height: 350px;
  }
  .mission-card,
  .vision-card,
  .team-member {
    padding: 30px 20px;
  }
  .company-detail-item {
    padding: 20px;
  }
}
/**
 * お問い合わせ完了ページのスタイル
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
.contact-success {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.contact-success .success-container {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  background: #fff;
  padding: 60px 40px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.contact-success .success-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#007bff), color-stop(#28a745), to(#ffc107));
  background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
}
.contact-success .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: white;
  -webkit-box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
          box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  -webkit-animation: successPulse 2s ease-in-out infinite;
          animation: successPulse 2s ease-in-out infinite;
}
@-webkit-keyframes successPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes successPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.contact-success .success-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-success .success-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
  border-left: 4px solid #007bff;
}
.contact-success .success-details h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
}
.contact-success .success-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}
.contact-success .success-details p strong {
  color: #007bff;
  font-weight: 600;
}
.contact-success .success-details .contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #e9ecef;
}
.contact-success .success-details .contact-info strong {
  color: #2c3e50;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.contact-success .success-details .contact-info .email-link {
  color: #007bff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-success .success-details .contact-info .email-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.contact-success .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact-success {
    padding: 40px 0;
  }
  .contact-success .success-container {
    padding: 40px 20px;
    margin: 0 15px;
  }
  .contact-success .success-title {
    font-size: 2rem;
  }
  .contact-success .success-message {
    font-size: 1.1rem;
  }
  .contact-success .success-details {
    padding: 20px;
  }
  .contact-success .success-details li {
    padding: 12px 0;
  }
  .contact-success .success-details li:hover {
    margin: 0 -10px;
    padding: 12px 10px;
  }
  .contact-success .action-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-success .action-buttons .btn {
    width: 100%;
    max-width: 300px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  .contact-success .success-container {
    padding: 30px 15px;
  }
  .contact-success .success-title {
    font-size: 1.8rem;
  }
  .contact-success .success-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * ヘルパーユーティリティ - 最適化版
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
/**
 * SCSS Mixins - 共通パターン
 * 
 * @package CorporateSite
 * @version 2.0.0
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #4A6FA5;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #4A6FA5 0%, #2E81B0 100%);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: #8A8A8B;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #90d8ff;
}

.text-secondary {
  color: #4A6FA5;
}

.text-success {
  color: #34A853;
}

.text-warning {
  color: #FBBC04;
}

.text-error {
  color: #EA4335;
}

.text-muted {
  color: #A4A4A5;
}

.bg-primary {
  background-color: #90d8ff;
}

.bg-secondary {
  background-color: #4A6FA5;
}

.bg-light {
  background-color: #F8F9FA;
}

.bg-white {
  background-color: #ffffff;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 2rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-grid {
  display: grid;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}/*# sourceMappingURL=app.css.map */