@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  --color-navy-dark: #090d16;
  --color-navy-medium: #111a2e;
  --color-navy-light: #1e293b;
  --color-gold-dark: #aa853c;
  --color-gold: #c5a880;
  --color-gold-light: #e2d2bd;
  --color-text-light: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-bg-light: #fdfdfd;
  --color-bg-alt: #f1f5f9;
  --color-accent-amber: #f59e0b;
  --color-border-glass: rgba(197, 168, 128, 0.15);
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 30px -10px rgba(197, 168, 128, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-navy-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

/* --- Reusable Components & Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  color: inherit;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -0.5rem auto 4rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

.text-gold {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy-dark);
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(197, 168, 128, 0.4);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
  background: rgba(197, 168, 128, 0.08);
  color: var(--color-text-light);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

.glass-card {
  background: rgba(17, 26, 46, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-glass);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
  transform: translateY(-5px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  box-shadow: var(--shadow-premium);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}

.logo span:last-child {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-light);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, rgba(17, 26, 46, 0.4) 0%, rgba(9, 13, 22, 0.95) 100%), 
              url('../assets/hero.png') center/cover no-repeat;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* --- Philosophy / Services Section --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.philosophy-card {
  position: relative;
}

.philosophy-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--color-border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: var(--color-gold);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.philosophy-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy-dark);
  transform: rotateY(180deg);
}

.philosophy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.philosophy-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- Trustee Section (Alternative Light Background) --- */
.trustee-highlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.trustee-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.trustee-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #475569;
}

.trustee-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.trustee-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trustee-feature-item svg {
  color: var(--color-gold-dark);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.trustee-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-text-dark);
}

.trustee-feature-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
}

.trustee-badge-card {
  background: var(--color-navy-dark);
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid rgba(197, 168, 128, 0.2);
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.trustee-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
}

.trustee-badge-card svg {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.trustee-badge-card h3 {
  font-size: 1.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.8rem;
}

.trustee-badge-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Timeline / Roadmap Section --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold-dark) 0%, rgba(197, 168, 128, 0.1) 100%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3.5rem;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 36px;
  top: 0px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-navy-dark);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gold);
  box-shadow: 0 0 0 6px rgba(9, 13, 22, 1);
  transition: var(--transition-smooth);
}

.timeline-item.active .timeline-dot,
.timeline-item:hover .timeline-dot {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  box-shadow: 0 0 0 6px rgba(9, 13, 22, 1), 0 0 15px rgba(197, 168, 128, 0.6);
}

.timeline-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.timeline-header h3 {
  font-size: 1.4rem;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-header h3 {
  color: var(--color-gold-light);
}

.timeline-duration {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-gold);
  background: rgba(197, 168, 128, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.timeline-toggle-icon {
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.timeline-item.active .timeline-toggle-icon {
  transform: rotate(180deg);
}

.timeline-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.timeline-item.active .timeline-body {
  max-height: 500px;
  opacity: 1;
  padding-top: 1rem;
}

.timeline-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.timeline-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.timeline-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.timeline-steps li svg {
  color: var(--color-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.timeline-steps li strong {
  color: var(--color-text-light);
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.team-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  overflow: hidden;
}

.team-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-role {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.team-baro {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  display: block;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credential-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 4px;
  color: var(--color-gold-light);
}

/* --- PDF Download Section --- */
.download-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.download-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-text p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.download-preview {
  display: flex;
  justify-content: center;
  position: relative;
}

.pdf-mockup {
  width: 240px;
  height: 330px;
  background: var(--color-navy-light);
  border-radius: 6px;
  border: 1px solid var(--color-border-glass);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.pdf-mockup:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 40px 80px -20px rgba(197, 168, 128, 0.25);
  border-color: var(--color-gold);
}

.pdf-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent transparent var(--color-navy-dark) transparent;
  box-shadow: -5px 5px 15px rgba(0,0,0,0.3);
}

.pdf-mockup-header {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.pdf-mockup-title {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-top: 2rem;
}

.pdf-mockup-footer {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-detail-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--color-text-dark);
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.9rem;
  color: #475569;
}

.contact-detail-item a:hover {
  color: var(--color-gold-dark);
}

.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  color: var(--color-gold);
  background-color: var(--color-navy-dark);
  padding: 0 0.3rem;
}

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

textarea.form-input ~ .form-label {
  top: 0.9rem;
}

textarea.form-input:focus ~ .form-label,
textarea.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
}

/* --- Footer --- */
.footer {
  background-color: #04060b;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  padding: 4rem 0 2rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trustee-highlight {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .team-card {
    grid-template-columns: 1fr;
  }
  
  .team-img-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .team-info {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .team-credentials {
    justify-content: center;
  }
  
  .download-box {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 55px;
  }
  
  .timeline-dot {
    left: 6px;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- Download Grid & Cards --- */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.download-card-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: rgba(17, 26, 46, 0.4);
}

.download-card-text {
  flex: 1;
}

.download-card-text h3 {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 0.8rem;
}

.download-card-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  min-height: 4.5rem;
}

.small-mockup {
  width: 140px;
  height: 190px;
  padding: 1rem;
  flex-shrink: 0;
}

.small-mockup .pdf-mockup-header {
  font-size: 0.55rem;
}

.small-mockup .pdf-mockup-title {
  font-size: 0.75rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.small-mockup .pdf-mockup-footer {
  font-size: 0.45rem;
  padding-top: 0.5rem;
  margin-top: auto;
}

@media (max-width: 900px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .download-card-text p {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .download-card-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .small-mockup {
    margin-top: 1rem;
  }
}
