:root {
  --color-brand: #3AABE0;
  --color-brand-dark: #2891c4;
  --color-brand-light: #e9f5fc;
  --color-pink: #e86ca0;
  --color-kasai: #e8623a;
  --color-seimei: #3aabe0;
  --color-loan: #6c5ce7;
  --color-chokin: #00b894;
  --color-bg: #f5f7fa;
  --color-white: #ffffff;
  --color-text: #1a2535;
  --color-text-mid: #4a5a6e;
  --color-text-light: #8694a6;
  --color-border: #e4e9ef;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(26,37,53,0.05);
  --shadow-md: 0 4px 24px rgba(26,37,53,0.08);
  --shadow-lg: 0 12px 48px rgba(26,37,53,0.12);
  --shadow-card: 0 2px 16px rgba(26,37,53,0.06);
  --font-display: 'Outfit', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.logo img.logo-icon { height: 38px; width: 38px; border-radius: 10px; }
.logo img.logo-full { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--color-brand);
  background: var(--color-brand-light);
}
.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--color-brand);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s;
}
.nav-contact:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(58,171,224,0.35);
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ==================== HERO ==================== */
.hero {
  padding: 130px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,171,224,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,108,160,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-logo {
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.hero-logo img { height: 42px; width: auto; }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 6px 18px 6px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-mid);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.7s 0.05s ease both;
}
.hero-tagline-icon {
  background: var(--color-brand);
  color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.hero h1 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-brand), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--color-text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
  animation: fadeUp 0.7s 0.15s ease both;
}

/* ==================== SERVICE CARDS ==================== */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 70px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Top: Preview image area */
.card-preview {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
/* Gradient overlay on preview */
.card-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255,255,255,0.95));
  z-index: 2;
}


/* Card preview image */
.card-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover .card-preview-img {
  transform: scale(1.03);
}

/* Bottom content area */
.card-body {
  padding: 20px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.kasai .card-label { color: var(--color-kasai); }
.kasai .card-label-dot { background: var(--color-kasai); }
.seimei .card-label { color: var(--color-seimei); }
.seimei .card-label-dot { background: var(--color-seimei); }
.loan .card-label { color: var(--color-loan); }
.loan .card-label-dot { background: var(--color-loan); }
.chokin .card-label { color: var(--color-chokin); }
.chokin .card-label-dot { background: var(--color-chokin); }

.card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.35;
}
.card-desc {
  font-size: 13.5px;
  color: var(--color-text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
  flex: 1;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  width: fit-content;
}
.card-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card:hover .card-cta svg { transform: translateX(3px); }

.kasai .card-cta { background: #fef3f0; color: var(--color-kasai); }
.kasai:hover .card-cta { background: var(--color-kasai); color: white; }
.seimei .card-cta { background: #edf6fd; color: var(--color-seimei); }
.seimei:hover .card-cta { background: var(--color-seimei); color: white; }
.loan .card-cta { background: #f1eefe; color: var(--color-loan); }
.loan:hover .card-cta { background: var(--color-loan); color: white; }
.chokin .card-cta { background: #e6f9f3; color: var(--color-chokin); }
.chokin:hover .card-cta { background: var(--color-chokin); color: white; }

/* ==================== LATEST ARTICLES ==================== */
.articles-section {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 24px;
}
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.articles-header h2 {
  font-size: 22px;
  font-weight: 800;
}
.articles-header h2 span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  margin-left: 10px;
}

/* Tabs */
.article-tabs {
  display: flex;
  gap: 4px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.article-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  background: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  position: relative;
}
.article-tab:hover {
  color: var(--color-text-mid);
  background: var(--color-bg);
}
.article-tab.active {
  color: var(--color-white);
  background: var(--color-brand);
  box-shadow: 0 2px 8px rgba(58,171,224,0.3);
}
.article-tab.active[data-tab="kasai"] { background: var(--color-kasai); box-shadow: 0 2px 8px rgba(232,98,58,0.3); }
.article-tab.active[data-tab="seimei"] { background: var(--color-seimei); box-shadow: 0 2px 8px rgba(58,171,224,0.3); }
.article-tab.active[data-tab="loan"] { background: var(--color-loan); box-shadow: 0 2px 8px rgba(108,92,231,0.3); }
.article-tab.active[data-tab="chokin"] { background: var(--color-chokin); box-shadow: 0 2px 8px rgba(0,184,148,0.3); }

/* Tab content */
.article-tab-content {
  display: none;
}
.article-tab-content.active {
  display: block;
  animation: tabFadeIn 0.35s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Article grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.article-thumb {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
}
/* Color-coded placeholder thumbnails */
.article-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
}
.article-thumb-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, currentColor 8px, currentColor 9px);
}
.kasai-thumb { background: linear-gradient(135deg, #fff5f2, #ffddd3); color: var(--color-kasai); }
.seimei-thumb { background: linear-gradient(135deg, #f0f8fe, #d0e8f9); color: var(--color-seimei); }
.loan-thumb { background: linear-gradient(135deg, #f5f2ff, #e0d9f9); color: var(--color-loan); }
.chokin-thumb { background: linear-gradient(135deg, #eefbf6, #c8f0df); color: var(--color-chokin); }

.article-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  z-index: 2;
  background-color: #3AABE0;
}
.kasai-thumb .article-badge { background: var(--color-kasai); }
.seimei-thumb .article-badge { background: var(--color-seimei); }
.loan-thumb .article-badge { background: var(--color-loan); }
.chokin-thumb .article-badge { background: var(--color-chokin); }

.article-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-date {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-weight: 500;
}
.article-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-readmore {
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.article-card:hover .article-readmore { gap: 8px; }
.kasai .article-readmore, [data-cat="kasai"] .article-readmore { color: var(--color-kasai); }
.seimei .article-readmore, [data-cat="seimei"] .article-readmore { color: var(--color-seimei); }
.loan .article-readmore, [data-cat="loan"] .article-readmore { color: var(--color-loan); }
.chokin .article-readmore, [data-cat="chokin"] .article-readmore { color: var(--color-chokin); }

/* "View all" link */
.articles-viewall {
  text-align: center;
  margin-top: 24px;
}

/* Loading & error states */
.articles-loading, .articles-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--color-text-light);
  font-size: 14px;
}
.articles-loading::before {
  content: '';
  display: block;
  width: 28px; height: 28px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-brand);
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.articles-error {
  color: var(--color-text-light);
}
.articles-error a {
  color: var(--color-brand);
  text-decoration: none;
  font-weight: 600;
}
.articles-viewall a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  padding: 10px 24px;
  border: 1.5px solid var(--color-brand);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.articles-viewall a:hover {
  background: var(--color-brand);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .articles-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .article-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; display: flex; flex-wrap: nowrap; width: 100%; }
  .article-tab { flex: 1 1 0;
        font-size: 12px;
        padding: 7px 4px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-thumb { height: 120px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== STATS ==================== */
.stats-bar {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 24px;
}
.stats-inner {
  background: linear-gradient(135deg, var(--color-brand), #5bbfe8);
  border-radius: var(--radius-lg);
  padding: 38px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.stats-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.stat-item {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.2);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}
.stat-value span { font-size: 14px; font-weight: 400; opacity: 0.85; }
.stat-label { font-size: 13px; opacity: 0.75; }

/* ==================== ABOUT ==================== */
.about-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 18px;
}
.about-text h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-brand), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p {
  font-size: 14.5px;
  color: var(--color-text-mid);
  line-height: 2;
  margin-bottom: 24px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-feature {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.about-feature-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 1px; }
.about-feature-text span { font-size: 11.5px; color: var(--color-text-light); line-height: 1.5; }

.about-visual-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, var(--color-brand), var(--color-pink));
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-service-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s;
}
.about-service-item:hover { background: var(--color-brand-light); transform: translateY(-2px); }
.about-service-item .icon { font-size: 28px; margin-bottom: 6px; display: block; }
.about-service-item .name { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.about-service-item .sub { font-size: 11px; color: var(--color-text-light); }

/* ==================== CTA ==================== */
.cta-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.cta-inner {
  background: var(--color-text);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(58,171,224,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,108,160,0.1) 0%, transparent 50%);
}
.cta-text { flex: 1; position: relative; z-index: 1; color: white; }
.cta-text h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; margin-bottom: 10px; line-height: 1.4; }
.cta-text p { font-size: 14px; opacity: 0.7; line-height: 1.8; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; flex-shrink: 0; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.cta-btn.primary { background: var(--color-brand); color: white; }
.cta-btn.primary:hover { background: var(--color-brand-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(58,171,224,0.4); }
.cta-btn.secondary { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15); }
.cta-btn.secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ==================== COMPANY ==================== */
.company-section { max-width: 1200px; margin: 0 auto 60px; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.section-header p { font-size: 14px; color: var(--color-text-light); }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.company-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.company-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.company-card h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-brand); }
.company-row { display: flex; border-bottom: 1px solid var(--color-border); padding: 9px 0; font-size: 13px; }
.company-row:last-child { border-bottom: none; }
.company-row-label { width: 90px; flex-shrink: 0; color: var(--color-text-light); font-weight: 600; }
.company-row-value { color: var(--color-text-mid); line-height: 1.7; }
.company-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  transition: gap 0.2s;
}
.company-card-link:hover { gap: 8px; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: #1a2535;
  color: rgba(255,255,255,0.65);
  padding: 56px 24px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.footer-brand-text span { color: var(--color-brand); }
.footer-brand p { font-size: 12.5px; line-height: 1.85; opacity: 0.5; }
.footer-col h4 { font-size: 12.5px; font-weight: 600; color: white; margin-bottom: 14px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 12.5px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  opacity: 0.45;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: inherit; text-decoration: none; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  z-index: 99;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; font-size: 15px; font-weight: 600;
  color: var(--color-text); text-decoration: none;
  border-radius: var(--radius-md); transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--color-brand-light); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-actions { flex-direction: row; }
}
@media (max-width: 768px) {
  .header-inner { height: 60px; }
  .nav-links, .nav-contact { display: none; }
  .hamburger { display: block; }
  .hero { padding: 100px 20px 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .card-preview { height: 180px; }
  .card-body { padding: 18px 22px 24px; }
  .card-title { font-size: 18px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 28px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-value { font-size: 26px; }
  .about-features { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
