/* ============================================
   Aryo Consulting Group — Modern Redesign
   ============================================ */

:root {
  /* Brand */
  --aryo-deep-blue: #1a365d;
  --aryo-deep-blue-hover: #274d8e;
  --aryo-teal: #0d9488;
  --aryo-green-teal: #14b8a6;
  --aryo-light-blue: #7dd3fc;
  --aryo-off-white: #f8fafc;
  --aryo-light-grey: #e2e8f0;
  --aryo-white: #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', 'Inter', system-ui, sans-serif;

  /* Spacing & layout */
  --container-max: 1280px;
  --section-padding: clamp(4rem, 8vw, 6rem);
  --header-height: 88px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 54, 93, 0.1);
  --shadow-lg: 0 20px 50px rgba(26, 54, 93, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-smooth: 0.4s var(--ease-out);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  background: var(--aryo-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast); }
ul { list-style: none; margin: 0; padding: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--aryo-deep-blue);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aryo-green-teal);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2rem);
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

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

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--aryo-deep-blue);
}
.logo img { width: 48px; height: 48px; object-fit: contain; }

.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.nav-desktop a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 54, 93, 0.75);
}
.nav-desktop a:hover { color: var(--aryo-deep-blue); }

/* Tools dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 54, 93, 0.75);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--aryo-deep-blue); }
.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  margin-top: 0.5rem;
  min-width: 240px;
  background: var(--aryo-white);
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--aryo-deep-blue);
  border-radius: var(--radius-sm);
}
.nav-dropdown-menu a:hover {
  background: var(--aryo-off-white);
  color: var(--aryo-deep-blue);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--aryo-deep-blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.btn-login:hover {
  background: var(--aryo-deep-blue-hover);
  transform: translateY(-1px);
}

.btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  color: var(--aryo-deep-blue);
  cursor: pointer;
}
@media (min-width: 768px) { .btn-menu { display: none; } }

/* ========== Hero ========== */
.hero {
  padding: calc(var(--header-height) + 4rem) 0 var(--section-padding);
  background: var(--aryo-off-white);
  border-bottom: 1px solid var(--aryo-light-grey);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.04) 0%, rgba(20, 184, 166, 0.06) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero .label { margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.75rem; }
.hero .label::before { content: ''; width: 48px; height: 2px; background: var(--aryo-green-teal); }
.hero h1 { margin-bottom: 1rem; max-width: 18ch; }
.hero h1 .gradient { background: linear-gradient(135deg, var(--aryo-deep-blue), var(--aryo-green-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: clamp(1rem, 2vw, 1.25rem); color: #64748b; max-width: 36rem; margin-bottom: 1.5rem; line-height: 1.65; font-weight: 400; }
.hero-desc strong { color: var(--aryo-deep-blue); }

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem 1.5rem;
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--aryo-deep-blue);
}
.hero-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aryo-green-teal);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--aryo-deep-blue);
  color: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.25);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary:hover {
  background: var(--aryo-deep-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26, 54, 93, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: white;
  color: var(--aryo-deep-blue);
  border: 2px solid var(--aryo-light-grey);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.btn-secondary:hover { border-color: var(--aryo-deep-blue); background: var(--aryo-off-white); }

/* Logo strip */
.logo-strip {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--aryo-light-grey);
  border-bottom: 1px solid var(--aryo-light-grey);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.logo-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 40s linear infinite;
}
.logo-strip span {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
  opacity: 0.8;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== Section defaults ========== */
.section {
  padding: var(--section-padding) 0;
}
.section-alt { background: var(--aryo-off-white); border-top: 1px solid var(--aryo-light-grey); }
.section-dark {
  background: var(--aryo-deep-blue);
  color: white;
  border: none;
}
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .label { color: var(--aryo-light-blue); }

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.section-head .label { margin-bottom: 0.5rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.125rem; color: #64748b; margin: 0; }
.section-dark .section-head p { color: rgba(255,255,255,0.75); }

/* ========== Cards ========== */
.card-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}
.card:hover {
  border-color: var(--aryo-green-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-dark {
  background: var(--aryo-deep-blue);
  border-color: var(--aryo-deep-blue);
  color: white;
}
.card-dark h3 { color: white; }
.card-dark p { color: rgba(255,255,255,0.85); }
.card-dark .card-meta { color: var(--aryo-green-teal); }

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.card:not(.card-dark) .card-icon { background: var(--aryo-off-white); color: var(--aryo-deep-blue); }
.card-dark .card-icon { background: rgba(255,255,255,0.12); color: white; }
.capability-link { display: block; text-decoration: none; color: inherit; }
.capability-link:hover .card { border-color: var(--aryo-deep-blue); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.25rem; }
.card-meta { font-size: 0.875rem; font-weight: 600; color: var(--aryo-teal); margin-bottom: 0.75rem; }
.card p { font-size: 0.875rem; line-height: 1.6; margin: 0; color: #64748b; }
.card-dark p { color: rgba(255,255,255,0.8); }

/* ========== Process / Timeline ========== */
.process-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--aryo-light-grey);
    z-index: 0;
  }
}
.process-item {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}
.process-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--aryo-deep-blue);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
@media (min-width: 768px) { .process-dot { left: 50%; transform: translateX(-50%); } }
.process-item:hover .process-dot { background: var(--aryo-green-teal); border-color: var(--aryo-green-teal); transform: translateX(-50%) scale(1.2); }
.process-time { font-size: 0.75rem; font-weight: 700; color: var(--aryo-teal); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.process-phase { font-size: 0.625rem; font-weight: 700; color: rgba(26, 54, 93, 0.5); text-transform: uppercase; letter-spacing: 0.2em; }
.process-item h3 { font-size: 1.125rem; margin: 0.5rem 0 0.5rem; }
.process-item p { font-size: 0.875rem; color: #64748b; margin: 0; }

/* ========== Stats ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: white; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aryo-light-blue); }

/* ========== Testimonials ========== */
.testimonials-wrap { position: relative; }
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-track { background: var(--aryo-light-grey); border-radius: 3px; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--aryo-deep-blue); border-radius: 3px; }

.testimonial-card {
  flex: 0 0 min(100%, 380px);
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition-smooth);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote { font-size: 1.25rem; font-family: var(--font-display); font-style: italic; color: var(--aryo-deep-blue); line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--aryo-light-grey);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--aryo-deep-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--aryo-deep-blue); }
.testimonial-role { font-size: 0.875rem; color: #64748b; }

/* ========== CTA / Contact section ========== */
.cta-section .container {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .cta-section .container { grid-template-columns: 1fr 1fr; } }
.cta-content .label { margin-bottom: 0.5rem; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content h2 .accent { color: var(--aryo-teal); }
.cta-content > p { font-size: 1.125rem; color: #64748b; margin-bottom: 1.5rem; line-height: 1.65; }
.cta-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-contact-list a, .cta-contact-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--aryo-deep-blue);
  font-weight: 500;
}
.cta-contact-list svg { flex-shrink: 0; color: var(--aryo-green-teal); }

.cta-form-wrap {
  background: var(--aryo-off-white);
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cta-form-wrap h3 { margin-bottom: 1.5rem; }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aryo-deep-blue);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--aryo-deep-blue);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--aryo-deep-blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.form-submit:hover { background: var(--aryo-deep-blue-hover); }

/* ========== Page header (inner pages) ========== */
.page-header {
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  background: var(--aryo-off-white);
  border-bottom: 1px solid var(--aryo-light-grey);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--aryo-deep-blue); }
.breadcrumb span:last-of-type { color: var(--aryo-deep-blue); font-weight: 600; }
.page-header .label { margin-bottom: 0.5rem; }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header > .container > p { font-size: 1.25rem; color: #64748b; max-width: 40rem; margin: 0; }

/* ========== Industries / list blocks ========== */
.industry-block {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.industry-block:hover { border-color: var(--aryo-green-teal); box-shadow: var(--shadow-md); }
.industry-block-inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .industry-block-inner { grid-template-columns: 1fr 1fr 1fr; } }
.industry-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.industry-title-row .card-icon { margin-bottom: 0; }
.industry-block h3 { font-size: 1.5rem; margin: 0; }
.industry-block .track-record {
  background: var(--aryo-off-white);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}
.industry-block .track-record .label { margin-bottom: 0.25rem; display: block; }
.industry-block .track-record p { margin: 0; }
.industry-block .track-record strong { font-size: 1.125rem; color: var(--aryo-teal); }
.industry-block ul { margin: 0; }
.industry-block ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #64748b;
  padding: 0.25rem 0;
}
.industry-block ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aryo-light-grey);
  flex-shrink: 0;
}
.industry-block ul.expertise li::before { background: var(--aryo-green-teal); }

/* ========== Case study / insight cards ========== */
.case-card, .insight-card {
  display: block;
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.case-card:hover, .insight-card:hover {
  border-color: var(--aryo-deep-blue);
  box-shadow: var(--shadow-md);
}
.case-card .tags, .insight-card .tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tag { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--aryo-green-teal); }
.tag-featured { background: var(--aryo-deep-blue); color: white; padding: 0.2rem 0.5rem; border-radius: 4px; }
.case-card h3, .insight-card h3 { margin-bottom: 0.25rem; font-size: 1.25rem; }
.case-card .client, .insight-card .date { font-size: 0.875rem; color: #64748b; margin-bottom: 1rem; }
.case-card p, .insight-card p { font-size: 0.9375rem; color: #64748b; line-height: 1.6; margin-bottom: 1.5rem; }
.case-card-footer, .insight-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--aryo-light-grey);
}
.case-value .small { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; }
.case-value .big { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--aryo-deep-blue); }
.read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aryo-deep-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.case-card:hover .read-more, .insight-card:hover .read-more { color: var(--aryo-teal); }

/* ========== About: story, values, team ========== */
.about-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.story-card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.story-card h2 { margin-bottom: 1rem; }
.story-card p { margin-bottom: 1rem; color: #64748b; }
.story-card p:last-child { margin-bottom: 0; }
.story-card p strong { color: var(--aryo-deep-blue); }

.value-item {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition-smooth);
}
.value-item:hover { border-color: var(--aryo-green-teal); }
.value-item .card-icon { margin-bottom: 0; }
.value-item h3 { margin-bottom: 0.25rem; font-size: 1.125rem; }
.value-item p { margin: 0; font-size: 0.9375rem; color: #64748b; }

.team-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--aryo-deep-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.875rem; font-weight: 600; color: var(--aryo-teal); margin-bottom: 0.5rem; }
.team-card p { font-size: 0.875rem; color: #64748b; margin: 0; }

.location-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(3, 1fr); } }
.location-card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.location-card.coming-soon { background: var(--aryo-off-white); border-style: dashed; }
.location-card.coming-soon h3, .location-card.coming-soon p { color: #94a3b8; }
.location-card .card-icon { margin-bottom: 0; display: inline-flex; }
.location-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.location-card h3 { margin: 0; font-size: 1.125rem; }
.location-card .coming { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; color: var(--aryo-teal); margin-left: 0.5rem; }

/* ========== Contact page ========== */
.contact-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 2fr 1fr; } }
.contact-form-card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-card h2 { margin-bottom: 1.5rem; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.office-card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.office-card .card-icon { margin-bottom: 0; display: inline-flex; }
.office-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.office-card h3 { margin: 0; font-size: 1.125rem; }
.office-card .sub { font-size: 0.75rem; color: var(--aryo-teal); }
.office-card .address, .office-card .phone, .office-card .email { font-size: 0.9375rem; color: #64748b; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.response-card {
  background: var(--aryo-deep-blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.response-card h3 { color: white; margin-bottom: 0.5rem; }
.response-card p { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin: 0; }

/* ========== CTA strip ========== */
.cta-strip {
  background: var(--aryo-deep-blue);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.cta-strip h3 { color: white; margin-bottom: 0.5rem; }
.cta-strip p { color: rgba(255,255,255,0.8); max-width: 32rem; margin: 0 auto 1.5rem; }
.cta-strip .btn-primary { background: white; color: var(--aryo-deep-blue); }
.cta-strip .btn-primary:hover { background: var(--aryo-off-white); }

/* ========== Footer ========== */
.site-footer {
  background: var(--aryo-deep-blue);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin: 0; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer-col a:hover { color: white; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aryo-light-blue);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: white; }

/* ========== Tool pages (PE, Stablecoin, Website Analyzer) ========== */
.tool-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--aryo-deep-blue) 0%, #1a3666 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.tool-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.tool-hero .label { color: var(--aryo-light-blue); margin-bottom: 0.5rem; }
.tool-hero h1 { color: white; margin-bottom: 0.5rem; }
.tool-hero p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.125rem; max-width: 36rem; }

.tool-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 4rem;
  background: var(--aryo-off-white);
}
@media (min-width: 1024px) {
  .tool-layout { grid-template-columns: 400px 1fr; align-items: start; }
}
.tool-sidebar {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tool-sidebar-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--aryo-light-grey);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--aryo-deep-blue);
}
.tool-sidebar-body { padding: 1.5rem; }
.tool-section-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aryo-green-teal);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--aryo-light-grey);
}
.tool-sidebar .form-group { margin-bottom: 1.25rem; }
.tool-sidebar .form-group:last-of-type { margin-bottom: 0; }
.tool-input-group {
  display: flex;
  align-items: stretch;
}
.tool-input-group .prefix {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  background: var(--aryo-off-white);
  border: 1px solid var(--aryo-light-grey);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.tool-input-group input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.tool-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--aryo-light-grey);
}
.tool-buttons .btn-primary { flex: 1; }
.tool-results {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tool-results-placeholder {
  color: #94a3b8;
}
.tool-results-placeholder svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}
.tool-results-placeholder h3 { color: var(--aryo-deep-blue); margin-bottom: 0.5rem; }
.tool-results-placeholder p { color: #64748b; margin: 0; max-width: 28rem; margin-left: auto; margin-right: auto; }

.tool-features {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .tool-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tool-features { grid-template-columns: repeat(4, 1fr); } }
.tool-feature-card {
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}
.tool-feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tool-feature-card .card-icon { margin-bottom: 0.75rem; }
.tool-feature-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.tool-feature-card p { font-size: 0.875rem; margin: 0; color: #64748b; }

.tool-categories {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .tool-categories { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tool-categories { grid-template-columns: repeat(3, 1fr); } }
.tool-cat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--aryo-deep-blue);
}
.tool-cat-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--aryo-deep-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tool-pos-btn {
  padding: 0.75rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-sm);
  background: var(--aryo-off-white);
  color: #64748b;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.tool-pos-btn:hover { border-color: var(--aryo-deep-blue); color: var(--aryo-deep-blue); }
.tool-pos-btn.active { background: var(--aryo-deep-blue); border-color: var(--aryo-deep-blue); color: white; }

.tool-coin-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--aryo-light-grey);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.tool-coin-opt input { margin: 0; }
.tool-coin-opt span { font-size: 0.875rem; color: #475569; }
.tool-coin-opt:hover { border-color: var(--aryo-deep-blue); }
.tool-coin-opt.active { border-color: var(--aryo-deep-blue); background: rgba(26, 54, 93, 0.06); }
