/* ============================================
   PsykoLink Ekibimiz Sayfası Stilleri
   ============================================ */

:root {
  --primary-green: #10B981;
  --primary-blue: #3B82F6;
  --accent-purple: #6C63FF;
  --success-green: #22C55E;
  --warning-orange: #F59E0B;
  --gradient-blue-green: linear-gradient(135deg, #27AE60, #3498DB);
  --soft-gray: #F9FAFB;
  --dark-navy: #0C0F1A;
  --text-black: #1F2937;
  --text-light-gray: #9CA3AF;
  --white: #FFFFFF;
  --border: rgba(59, 130, 246, 0.3);
  --shadow: 0 25px 60px -30px rgba(14, 22, 40, 0.6);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--soft-gray);
  color: var(--text-black);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

.inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  padding-top: 0;
}

/* Hero Section */
.team-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.logo-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.logo-circle {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

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

.logo-circle i {
  font-size: 4rem;
  color: white;
}

.logo-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn.primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: var(--soft-gray);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-blue-green);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark-navy);
  margin: 0;
}

/* Team Members - Vertical Layout */
.team-members {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-blue-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px -35px rgba(14, 22, 40, 0.7);
}

.card-content {
  position: relative;
}

.member-name {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0 0 0.5rem;
}

.member-role {
  font-size: 1.2rem;
  color: var(--primary-blue);
  font-weight: 500;
  margin: 0 0 1.5rem;
}

/* Card Overlay - Hidden by default */
.card-overlay {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.team-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  background: var(--soft-gray);
  color: var(--text-black);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.action-btn[data-action="contact"] {
  background: var(--gradient-blue-green);
  color: white;
}

.action-btn.linkedin {
  background: #0077B5;
  color: white;
}

.action-btn.github {
  background: #333;
  color: white;
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Resources Section */
.resources-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--soft-gray) 0%, #f0f4f8 100%);
}

.resources-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.resource-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--soft-gray);
}

.expert-name {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0 0 1rem;
}

.expert-subtitle {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin: 0;
  font-weight: 500;
}

/* Scientific Foundations */
.foundation-intro {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--success-green);
}

.intro-icon {
  flex-shrink: 0;
}

.intro-icon i {
  font-size: 3rem;
  color: var(--success-green);
}

.intro-text h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin: 0 0 1rem;
}

.intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-black);
  margin-bottom: 1rem;
}

/* Methods Grid */
.methods-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.method-card {
  background: var(--soft-gray);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.method-card:hover {
  background: white;
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: translateX(5px);
}

.method-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-blue-green);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.method-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.method-card h4 i {
  color: var(--primary-blue);
}

.method-subtitle {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin: 0 0 1rem;
  font-style: italic;
}

.method-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.method-card ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-black);
  line-height: 1.7;
}

.method-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.method-badge,
.method-usage {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.method-badge {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--dark-navy);
  border-left: 4px solid var(--primary-blue);
}

.method-badge.warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left-color: var(--warning-orange);
}

.method-usage {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: var(--dark-navy);
  border-left: 4px solid var(--accent-purple);
}

.method-badge i,
.method-usage i {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Sources Section */
.sources-section {
  margin: 3rem 0;
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sources-section h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sources-section h4 i {
  color: var(--primary-blue);
}

.sources-table {
  overflow-x: auto;
}

.sources-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.sources-table th,
.sources-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.sources-table th {
  background: var(--gradient-blue-green);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.sources-table tbody tr:hover {
  background: var(--soft-gray);
}

.sources-table tbody tr:last-child td {
  border-bottom: none;
}

/* Unique Features */
.unique-features {
  margin: 3rem 0 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: var(--radius-md);
  border: 2px solid var(--warning-orange);
}

.unique-features h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin: 0 0 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.unique-features h4 i {
  color: var(--warning-orange);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-blue-green);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--text-black);
  line-height: 1.7;
  margin: 0;
}

.feature-box strong {
  color: var(--primary-blue);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--soft-gray);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-black);
  font-size: 1.2rem;
}

.modal-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--soft-gray);
}

.modal-header i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.modal-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin: 0;
}

.modal-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--soft-gray);
  border-radius: 10px;
}

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-blue-green);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-text {
  flex: 1;
}

.info-label {
  font-size: 0.85rem;
  color: var(--text-light-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1.05rem;
  color: var(--dark-navy);
  font-weight: 600;
}

.info-value a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: var(--primary-green);
}

.website-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-blue-green);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.website-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Active nav item */
.site-nav a.active {
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--primary-blue);
}

/* ============================================
   RESPONSIVE DESIGN - EKIBIMIZ
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .team-hero {
    padding: 6rem 0 4rem;
  }

  .team-section,
  .resources-section {
    padding: 5rem 0;
  }

  .resources-content {
    padding: 2.5rem;
  }

  .methods-grid {
    gap: 1.75rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .team-hero {
    padding: 5rem 0 3rem;
  }

  .logo-circle {
    width: 90px;
    height: 90px;
  }

  .logo-circle i {
    font-size: 3rem;
  }

  .logo-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 2rem;
  }

  .team-section,
  .resources-section {
    padding: 3rem 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .section-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .team-members {
    gap: 2rem;
  }

  .team-card {
    padding: 2rem;
  }

  .member-name {
    font-size: 1.625rem;
  }

  .member-role {
    font-size: 1.05rem;
  }

  .card-overlay {
    flex-direction: column;
    gap: 0.875rem;
  }

  .action-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .resources-content {
    padding: 2rem;
  }

  .resource-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.75rem;
  }

  .expert-name {
    font-size: 2.125rem;
  }

  .expert-subtitle {
    font-size: 1.1rem;
  }

  .foundation-intro {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .intro-icon i {
    font-size: 2.5rem;
  }

  .intro-text h4 {
    font-size: 1.3rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .methods-grid {
    gap: 1.75rem;
  }

  .method-card {
    padding: 1.75rem;
  }

  .method-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .method-card h4 {
    font-size: 1.2rem;
  }

  .method-subtitle {
    font-size: 0.95rem;
  }

  .method-card ul li {
    font-size: 0.95rem;
  }

  .method-badge,
  .method-usage {
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .sources-section {
    padding: 2rem;
  }

  .sources-section h4 {
    font-size: 1.3rem;
  }

  .sources-table {
    font-size: 0.9rem;
  }

  .sources-table th,
  .sources-table td {
    padding: 0.875rem 1rem;
  }

  .unique-features {
    padding: 2rem;
  }

  .unique-features h4 {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-box {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
  }

  .modal-content {
    padding: 2rem;
    width: 90%;
    max-width: 450px;
  }

  .modal-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .info-item {
    padding: 0.875rem;
  }

  .info-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Mobile Medium */
@media (max-width: 640px) {
  .team-hero {
    padding: 4.5rem 0 2.5rem;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
  }

  .logo-circle i {
    font-size: 2.5rem;
  }

  .logo-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .team-section,
  .resources-section {
    padding: 2.5rem 0;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .section-number {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
  }

  .team-card {
    padding: 1.75rem;
  }

  .member-name {
    font-size: 1.5rem;
  }

  .member-role {
    font-size: 1rem;
  }

  .resources-content {
    padding: 1.75rem;
  }

  .expert-name {
    font-size: 1.875rem;
  }

  .expert-subtitle {
    font-size: 1.05rem;
  }

  .foundation-intro {
    padding: 1.5rem;
  }

  .intro-icon i {
    font-size: 2.25rem;
  }

  .intro-text h4 {
    font-size: 1.2rem;
  }

  .method-card {
    padding: 1.5rem;
  }

  .method-card h4 {
    font-size: 1.125rem;
  }

  .sources-section,
  .unique-features {
    padding: 1.75rem;
  }

  .modal-content {
    width: 92%;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .team-hero {
    padding: 4rem 0 2rem;
  }

  .logo-circle {
    width: 70px;
    height: 70px;
  }

  .logo-circle i {
    font-size: 2.25rem;
  }

  .logo-title {
    font-size: 1.875rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .team-section,
  .resources-section {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }

  .team-members {
    gap: 1.75rem;
  }

  .team-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .member-name {
    font-size: 1.375rem;
  }

  .member-role {
    font-size: 0.95rem;
  }

  .card-overlay {
    margin-top: 1.5rem;
  }

  .action-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .resources-content {
    padding: 1.5rem;
  }

  .resource-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .expert-name {
    font-size: 1.75rem;
  }

  .expert-subtitle {
    font-size: 1rem;
  }

  .foundation-intro {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .intro-icon i {
    font-size: 2rem;
  }

  .intro-text h4 {
    font-size: 1.125rem;
  }

  .intro-text p {
    font-size: 0.95rem;
  }

  .methods-grid {
    gap: 1.5rem;
  }

  .method-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .method-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }

  .method-card h4 {
    font-size: 1.05rem;
  }

  .method-subtitle {
    font-size: 0.9rem;
  }

  .method-card ul li {
    font-size: 0.9rem;
    padding: 0.4rem 0 0.4rem 1.25rem;
  }

  .method-badge,
  .method-usage {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .sources-section {
    padding: 1.5rem;
  }

  .sources-section h4 {
    font-size: 1.125rem;
  }

  .sources-table {
    font-size: 0.85rem;
  }

  .sources-table th,
  .sources-table td {
    padding: 0.75rem 0.875rem;
  }

  .unique-features {
    padding: 1.5rem;
  }

  .unique-features h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }

  .feature-box p {
    font-size: 0.9rem;
  }

  .modal-content {
    padding: 1.75rem;
    width: 94%;
  }

  .modal-close {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.1rem;
  }

  .modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .modal-header i {
    font-size: 1.75rem;
  }

  .modal-header h3 {
    font-size: 1.2rem;
  }

  .contact-info {
    gap: 1.25rem;
  }

  .info-item {
    padding: 0.75rem;
  }

  .info-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }

  .info-label {
    font-size: 0.8rem;
  }

  .info-value {
    font-size: 0.95rem;
  }

  .website-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
  .team-hero {
    padding: 3.5rem 0 1.75rem;
  }

  .logo-circle {
    width: 65px;
    height: 65px;
  }

  .logo-circle i {
    font-size: 2rem;
  }

  .logo-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .team-section,
  .resources-section {
    padding: 1.75rem 0;
  }

  .section-header h2 {
    font-size: 1.375rem;
  }

  .section-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .team-card {
    padding: 1.25rem;
  }

  .member-name {
    font-size: 1.25rem;
  }

  .member-role {
    font-size: 0.9rem;
  }

  .resources-content {
    padding: 1.25rem;
  }

  .expert-name {
    font-size: 1.625rem;
  }

  .expert-subtitle {
    font-size: 0.95rem;
  }

  .foundation-intro {
    padding: 1rem;
  }

  .intro-icon i {
    font-size: 1.875rem;
  }

  .intro-text h4 {
    font-size: 1.05rem;
  }

  .intro-text p {
    font-size: 0.9rem;
  }

  .method-card {
    padding: 1rem;
  }

  .method-card h4 {
    font-size: 1rem;
  }

  .sources-section,
  .unique-features {
    padding: 1.25rem;
  }

  .feature-box {
    padding: 1.25rem;
  }

  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }
}

/* Landscape Mode */
@media (max-width: 820px) and (orientation: landscape) {
  .team-hero {
    padding: 3rem 0 2rem;
  }

  .team-section,
  .resources-section {
    padding: 2rem 0;
  }

  .methods-grid {
    gap: 1.25rem;
  }

  .method-card {
    padding: 1.25rem;
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .action-btn {
    min-height: 44px;
  }

  .team-card:hover {
    transform: none;
  }

  .card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 2rem;
  }

  .action-btn:hover {
    transform: none;
  }

  .action-btn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .feature-box:hover,
  .method-card:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .team-hero,
  .modal {
    page-break-inside: avoid;
  }

  .team-card,
  .method-card {
    page-break-inside: avoid;
  }

  .card-overlay {
    display: none;
  }

  .action-btn {
    display: none;
  }
}
