/* Modern dark theme with sophisticated grey palette and gradient transitions */

:root {
  --accent: #6366f1;
  --accent-light: #818cf8;
  --bg-black: #0f0f0f;
  --bg-dark-grey: #1a1a1a;
  --bg-grey: #2a2a2a;
  --bg-light-grey: #f5f5f5;
  --text-white: #ffffff;
  --text-light-grey: #e5e5e5;
  --text-grey: #a3a3a3;
  --text-dark-grey: #525252;
  --text-black: #0f0f0f;
  --border-grey: #404040;
  --border-light: #e5e5e5;
  --radius: 12px;
  --shadow-dark: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 15%, #e9ecef 35%, #dee2e6 55%, #ced4da 75%, #adb5bd 100%);
  background-attachment: fixed;
  color: var(--text-black);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-height: 100vh;
}

header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  min-height: 80px;
}

nav .logo img {
  height: 64px;
  width: auto;
  display: block;
  max-width: 160px;
}

nav .logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark-grey);
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.75rem 1rem;
  position: relative;
  white-space: nowrap;
}

nav ul li a.active, nav ul li a:hover {
  color: var(--text-dark-grey);
}

/* Removed active state underline */

/* Section Styles with Gradient Transitions */
.section {
  padding: 6rem 0;
}



.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-black);
    text-align: center;
    padding: 80px 20px 120px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Compact Hero for other pages */
.hero.compact {
    padding: 40px 20px 80px;
    min-height: 40vh;
}



.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-black);
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-dark-grey);
  margin-bottom: 3rem;
  max-width: 700px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-white);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-dark);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3), 0 10px 10px -5px rgba(99, 102, 241, 0.2);
}

.btn-light {
  background: var(--text-white);
  color: var(--text-black);
}

.btn-light:hover {
  background: var(--text-light-grey);
  color: var(--text-black);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 3rem 2.5rem;
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}



.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
}



.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-black);
}

.card p {
  color: var(--text-dark-grey);
  font-size: 1rem;
  line-height: 1.6;
}

.card-image {
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.expertise-image {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.expertise-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-black);
}

.what-we-do .section-header h2 {
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--text-dark-grey);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.what-we-do .section-header p {
  color: #333;
}

/* Footer with gradient transition from grey section */
footer {
  background: rgba(255, 255, 255, 0.9);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark-grey);
  text-align: center;
  padding: 3rem 0 1.5rem 0;
  font-size: 0.9rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

/* Features section spacing for IFU page */
.features {
  margin-bottom: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0);
  opacity: 1;
}

.footer-text {
  color: var(--text-dark-grey);
  font-size: 0.9rem;
  font-weight: 500;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}

.container.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}

header {
  min-height: 72px;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

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

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

.animated-stagger {
  opacity: 0;
}

@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    gap: 1rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .hero {
    padding: 60px 20px 80px;
    min-height: 50vh;
  }
  nav {
    padding: 0.75rem 1.5rem;
  }
  nav ul li a {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark-grey);
  }
  .section {
    padding: 4rem 0;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  /* Reduce gradient padding on mobile */
  .section-dark-grey.gradient-from-hero,
  .section-light-grey.gradient-from-dark,
  .section-grey.gradient-from-light {
    padding-top: 6rem;
  }
  footer {
    padding: 5rem 0 2rem 0;
  }
} 

/* What We Do Section */
.what-we-do {
    background: transparent;
    color: var(--text-black);
    padding: 160px 20px;
    text-align: center;
    position: relative;
}

/* Removed gradient overlay */

/* Products Section */
.products {
    background: transparent;
    color: var(--text-black);
    padding: 160px 20px;
    text-align: center;
    position: relative;
}

/* Removed gradient overlay */

/* Team Section */
.team {
    background: transparent;
    color: var(--text-black);
    padding: 160px 20px;
    text-align: center;
}

/* Update card styles for light section */
.what-we-do .card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(26, 26, 26, 0.15);
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.12);
    color: #1a1a1a;
}

.what-we-do .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(26, 26, 26, 0.25);
    background: rgba(255, 255, 255, 1);
}

.what-we-do .card h3 {
    color: #1a1a1a;
}

.what-we-do .card p {
    color: #444;
} 

/* Our Values (News) Section */
.news {
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(248, 249, 250, 0.3) 20%,
      rgba(233, 236, 239, 0.6) 40%,
      rgba(222, 226, 230, 0.8) 60%,
      rgba(206, 212, 218, 0.9) 80%,
      rgba(173, 181, 189, 1) 100%);
  color: var(--text-black);
  padding: 160px 20px;
  text-align: center;
  position: relative;
}

.news h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-black);
}

.news ul {
  list-style: none;
  margin: 3rem auto 0;
  padding: 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 2rem 1.25rem 3.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-black);
  text-align: left;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news li::before {
  content: "\2714"; /* checkmark symbol */
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent);
}

.news li:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .news {
    padding: 120px 20px;
  }
  .news h2 {
    font-size: 2.2rem;
  }
  .news li {
    font-size: 1rem;
    padding-left: 3rem;
  }
} 

/* Product Showcase Styles */
.product-showcase {
  padding: 120px 0;
  background: var(--bg-black);
  color: var(--text-white);
}

.product-showcase.light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-black);
}

.product-header {
  text-align: center;
  margin-bottom: 4rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.product-badge.golf {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border-color: rgba(76, 175, 80, 0.2);
}

.badge-icon {
  font-size: 1.1rem;
}

.product-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-showcase.light .product-title {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-subtitle {
  font-size: 1.2rem;
  color: var(--text-grey);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-description {
  font-size: 1.3rem;
  color: var(--text-light-grey);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-showcase.light .product-description {
  color: var(--text-dark-grey);
}

.product-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-group {
  margin-bottom: 2rem;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 0.5rem;
}

.product-showcase.light .feature-title {
  color: #4CAF50;
  border-bottom-color: rgba(76, 175, 80, 0.2);
}

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

.feature-card {
  background: var(--bg-dark-grey);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-showcase.light .feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.product-showcase.light .feature-card:hover {
  border-color: #4CAF50;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.product-showcase.light .feature-card h4 {
  color: var(--text-black);
}

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

.product-showcase.light .feature-card p {
  color: var(--text-dark-grey);
}

.product-visual {
  position: sticky;
  top: 120px;
}

.visual-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image {
  background: var(--bg-dark-grey);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-showcase.light .product-image {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.product-image.secondary {
  height: 120px;
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  min-height: 200px;
}

.product-image.secondary .image-placeholder {
  min-height: 120px;
  padding: 1rem;
}

.placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.placeholder-text {
  font-weight: 600;
  color: var(--text-light-grey);
  margin-bottom: 0.25rem;
}

.product-showcase.light .placeholder-text {
  color: var(--text-dark-grey);
}

.placeholder-subtext {
  font-size: 0.8rem;
  color: var(--text-grey);
  opacity: 0.8;
}

.putter-note {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.product-showcase.light .putter-note {
  color: #4CAF50;
}

.product-specs {
  background: var(--bg-dark-grey);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.product-showcase.light .product-specs {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-showcase.light .specs-title {
  color: #4CAF50;
}

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

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-showcase.light .spec-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-label {
  font-weight: 600;
  color: var(--text-light-grey);
}

.product-showcase.light .spec-label {
  color: var(--text-dark-grey);
}

.spec-value {
  color: var(--text-grey);
  text-align: right;
  max-width: 60%;
}

.target-audience {
  margin-bottom: 3rem;
}

.audience-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
  text-align: center;
}

.product-showcase.light .audience-title {
  color: #4CAF50;
}

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

.audience-card {
  background: var(--bg-dark-grey);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.product-showcase.light .audience-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.product-showcase.light .audience-card:hover {
  border-color: #4CAF50;
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.audience-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.product-showcase.light .audience-card h4 {
  color: var(--text-black);
}

.audience-card p {
  color: var(--text-grey);
  line-height: 1.5;
}

.product-showcase.light .audience-card p {
  color: var(--text-dark-grey);
}

.product-tagline {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.product-showcase.light .product-tagline {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border-color: rgba(76, 175, 80, 0.2);
}

.product-tagline p {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  margin: 0;
}

.product-showcase.light .product-tagline p {
  color: #4CAF50;
}

.training-features {
  margin-top: 4rem;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
  text-align: center;
}

.product-showcase.light .features-title {
  color: #4CAF50;
}

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

.training-card {
  background: var(--bg-dark-grey);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-showcase.light .training-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: #4CAF50;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.product-showcase.light .training-card:hover {
  box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-number {
  background: var(--accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-showcase.light .feature-number {
  background: #4CAF50;
}

.training-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}

.product-showcase.light .training-card h4 {
  color: var(--text-black);
}

.training-card p {
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-showcase.light .training-card p {
  color: var(--text-dark-grey);
}

.feature-diagram {
  background: var(--bg-grey);
  border-radius: 8px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-grey);
}

.product-showcase.light .feature-diagram {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.diagram-placeholder {
  color: var(--text-grey);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-visual {
    position: static;
    order: -1;
  }
  
  .visual-container {
    flex-direction: row;
    justify-content: center;
  }
  
  .product-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2.5rem;
  }
  
  .feature-cards {
    grid-template-columns: 1fr;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .visual-container {
    flex-direction: column;
  }
  
  .product-image {
    max-width: 100%;
  }
  
  .expertise-image {
    width: 140px;
    height: 140px;
  }
  
  .product-visual .product-image {
    width: 280px;
    height: 280px;
  }
  
  .product-card-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .product-showcase {
    padding: 80px 0;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-description {
    font-size: 1.1rem;
  }
  
  .feature-card,
  .audience-card,
  .training-card {
    padding: 1.5rem;
  }
  
  .expertise-image {
    width: 120px;
    height: 120px;
  }
  
  .product-visual .product-image {
    width: 220px;
    height: 220px;
  }
  
  nav {
    padding: 0.5rem 1rem;
  }
  
  nav .logo img {
    height: 40px;
    max-width: 120px;
  }
  
  nav ul {
    gap: 0.75rem;
  }
  
  nav ul li a {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    color: var(--text-dark-grey);
  }
} 

/* Products Grid - Compact Layout */
.products-grid {
  padding: 80px 0;
  background: transparent;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
}

.product-card.sports:hover {
  border-color: #4CAF50;
}

.product-card-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.product-card .product-badge {
  margin-bottom: 1rem;
}

.product-card .product-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-black);
}

.product-card .product-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark-grey);
}

.product-card .product-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dark-grey);
}

.product-card-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.feature-item .feature-icon {
  font-size: 1.5rem;
  margin: 0;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-white);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-grey);
  margin: 0;
  line-height: 1.4;
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-placeholder {
  background: var(--bg-grey);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.visual-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.visual-placeholder .placeholder-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.visual-placeholder .placeholder-text {
  font-weight: 600;
  color: var(--text-light-grey);
  font-size: 0.9rem;
}

.gaming-placeholder {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-color: var(--accent);
  color: white;
}

.gaming-placeholder .placeholder-icon,
.gaming-placeholder .placeholder-text,
.gaming-placeholder .placeholder-subtext {
  color: white;
}

.gaming-placeholder .placeholder-subtext {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-grey);
}

.product-visual .product-image {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-visual .product-image:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.tech-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.spec {
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.product-card.sports .spec {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border-color: rgba(76, 175, 80, 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.product-card.sports .btn-outline {
  border-color: #4CAF50;
  color: #4CAF50;
}

.product-card.sports .btn-outline:hover {
  background: #4CAF50;
  color: white;
}

/* Product Separator */
.product-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  gap: 1rem;
}

.separator-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  flex: 1;
  max-width: 200px;
}

.separator-icon {
  font-size: 1.5rem;
  background: var(--bg-dark-grey);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* Reamer Facts Page Enhancements */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark-grey);
}

.reamer-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.spec-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.spec-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.spec-card h4 {
  color: var(--text-black);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.spec-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-card li {
  color: var(--text-dark-grey);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.spec-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.reamer-showcase {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.5);
  margin-top: 4rem;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-black);
}

.showcase-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-dark-grey);
  line-height: 1.6;
}

.tech-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-black);
  font-weight: 500;
}

.highlight-icon {
  font-size: 1.5rem;
}

.reamer-showcase-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.reamer-showcase-img:hover {
  transform: scale(1.05);
}

/* Responsive Design for Reamer Facts */
@media (max-width: 900px) {
  .hero-content,
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 40px 20px 60px;
    min-height: 40vh;
  }
  
  .reamer-hero-image,
  .reamer-showcase-img {
    max-width: 100%;
  }
}

/* Product Details Sections */
.product-details {
  padding: 80px 0;
  background: var(--bg-black);
  min-height: 100vh;
}

.details-header {
  margin-bottom: 3rem;
}

.back-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: var(--accent-light);
}

.details-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.details-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.details-content h3:first-child {
  margin-top: 0;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
  font-weight: 600;
  color: var(--text-light-grey);
}

.spec-value {
  color: var(--text-grey);
  text-align: right;
  max-width: 60%;
}

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

.audience-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.audience-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.audience-icon {
  font-size: 1.5rem;
}

.audience-text {
  font-weight: 500;
  color: var(--text-light-grey);
}

.details-visual {
  position: sticky;
  top: 120px;
}

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

.training-feature {
  background: var(--bg-dark-grey);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.training-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.training-feature .feature-number {
  background: var(--accent);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.training-feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.training-feature p {
  color: var(--text-grey);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design for Products Grid */
@media (max-width: 1024px) {
  .product-card-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-visual {
    order: -1;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .details-visual {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-card {
    padding: 2rem;
  }
  
  .product-card .product-title {
    font-size: 2rem;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .tech-specs {
    justify-content: center;
  }
  
  .separator-line {
    max-width: 100px;
  }
  
  .training-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    padding: 60px 0;
  }
  
  .product-card {
    padding: 1.5rem;
  }
  
  .product-card .product-title {
    font-size: 1.8rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .visual-placeholder {
    min-height: 120px;
    padding: 1.5rem;
  }
} 