:root {
  --bg-page: #F8FAFC;
  --bg-hero-start: #F0FDFA;
  --bg-hero-end: #F1F5F9;
  --bg-card: #FFFFFF;
  --primary-accent: #0D9488;
  --primary-accent-light: #CCFBF1;
  --text-dark: #1E293B;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --error-bg: #FEF2F2;
  --error-text: #DC2626;
  --warning-bg: #FFFBEB;
  --warning-text: #B45309;
  --success-bg: #ECFDF5;
  --success-text: #065F46;
  --results-bg: #F8FAFC;
  --positive-color: #065F46;
  --negative-color: #DC2626;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-medium);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h2.section-title {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-bottom: 1.25rem;
}

h3.subsection-title {
  font-size: clamp(1rem, 3vw, 1.1rem);
  margin-bottom: 0.75rem;
}

/* Navigation */
.navbar {
  background-color: var(--bg-card);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem clamp(0.75rem, 3vw, 1rem);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 32px;
  width: auto;
}

.brand-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Navigation Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
  z-index: 1002;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Navigation Slider */
.nav-slider {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1001;
  overflow-y: auto;
}

.nav-slider.active {
  right: 0;
}

.slider-content {
  padding: 1.5rem;
  height: 100%;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.slider-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.slider-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-link {
  display: block;
  padding: 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.slider-link:hover, .slider-link.active {
  background-color: var(--primary-accent-light);
  color: var(--primary-accent);
}

/* Overlay when slider is open */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section - Fixed Spacing */
.hero-section {
  background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.main-card {
  margin-top: 0;
  position: relative;
  z-index: 10;
}

/* Calculator Container - Added spacing */
.calculator-container {
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: 3rem;
}

/* Centered Form Container */
.centered-form-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Main Tabs - Button Style */
.main-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.main-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--primary-accent);
  border-radius: 0.75rem;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary-accent);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
  min-width: 140px;
  justify-content: center;
}

.main-tab:hover {
  background-color: var(--primary-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.main-tab.active {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.main-tab i {
  font-size: 1.1rem;
}

/* Tab Content */
.tab-content {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tab-content.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Form Elements */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input-group input, .input-group select {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  background-color: white;
}

.input-group input:focus, .input-group select:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.input-help {
  font-size: 0.875rem;
  color: var(--text-light);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Buttons */
.calculate-button {
  background-color: var(--primary-accent);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  width: 100%;
  margin-top: 0.5rem;
}

.calculate-button:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: white;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  text-align: center;
}

.action-button:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.action-button.secondary {
  background-color: var(--bg-page);
}

.save-button {
  background-color: #3B82F6;
  color: white;
  border: none;
}

.save-button:hover {
  background-color: #2563EB;
  color: white;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 0.75rem;
}

/* Results Section */
.results-section {
  background-color: var(--results-bg);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--border-color);
  display: none;
}

.results-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.result-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.result-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1.2;
}

.result-value.positive {
  color: var(--positive-color);
}

.result-value.negative {
  color: var(--negative-color);
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

/* Message Boxes */
.message-box {
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.message-box i {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.message-content {
  flex: 1;
}

.message-content strong {
  display: block;
  margin-bottom: 0.25rem;
}

.error-box {
  background-color: var(--error-bg);
  color: var(--error-text);
  border-left: 4px solid var(--error-text);
}

.success-box {
  background-color: var(--success-bg);
  color: var(--success-text);
  border-left: 4px solid var(--success-text);
}

.warning-box {
  background-color: var(--warning-bg);
  color: var(--warning-text);
  border-left: 4px solid var(--warning-text);
}

/* Notices */
.privacy-notice, .disclaimer-box {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.privacy-notice {
  background-color: var(--success-bg);
  border-left: 4px solid var(--success-text);
}

.disclaimer-box {
  background-color: var(--warning-bg);
  border-left: 4px solid var(--warning-text);
}

.privacy-title, .disclaimer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.privacy-text, .disclaimer-text {
  font-size: 0.875rem;
  color: var(--text-medium);
}

/* Animations */
.animate-on-load {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog Articles */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.blog-icon i {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.blog-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  flex-grow: 0;
}

.blog-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
}

/* How-To Section */
.how-to-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
}

.how-to-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .how-to-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .how-to-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-to-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.how-to-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.how-to-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.how-to-icon i {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.how-to-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.how-to-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* FAQ Section */
.content-section {
  padding: 3rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: var(--bg-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  color: var(--primary-accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background-color: var(--bg-card);
  padding: 2rem 1rem;
  margin-top: 4rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-accent);
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* NEW: Overview Section Styles */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.overview-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.overview-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.overview-icon i {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.overview-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.overview-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* NEW: Use Cases Section Styles */
.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usecase-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.usecase-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.usecase-icon i {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.usecase-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.problem-solution {
  margin-bottom: 1.5rem;
}

.problem, .solution {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
}

.problem {
  background-color: #FEF2F2;
  border-left: 4px solid #DC2626;
}

.solution {
  background-color: #F0FDF4;
  border-left: 4px solid #16A34A;
}

.pro-tip {
  background-color: #FFFBEB;
  border-left: 4px solid #D97706;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: var(--bg-page);
  border-radius: 0.5rem;
}

.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* NEW: How-To Steps Styles */
.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.howto-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  background: var(--primary-accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quick-tip {
  background-color: #EFF6FF;
  border-left: 4px solid #3B82F6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.troubleshooting {
  background-color: #FEFCE8;
  border-left: 4px solid #EAB308;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

/* NEW: Tips & Best Practices Styles */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tip-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tip-number {
  background: var(--primary-accent);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.tip-card h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.tip-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.tip-example {
  background: var(--bg-page);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  border-left: 3px solid var(--primary-accent);
}

/* NEW: Success Stories Styles */
.success-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .success-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.success-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon i {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.success-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.user-story {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.user-story p {
  color: var(--text-medium);
  line-height: 1.6;
  font-style: italic;
}

.success-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.success-metric {
  text-align: center;
  padding: 1rem;
  background: var(--primary-accent-light);
  border-radius: 0.5rem;
}

.timeline {
  background: var(--bg-page);
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}

/* NEW: Technical Deep Dive Styles */
.technical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .technical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.technical-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.technical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.technical-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.technical-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* NEW: Advantages Section Styles */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.advantage-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.advantage-icon i {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.advantage-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.advantage-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.advantage-detail {
  background: var(--bg-page);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  border-left: 3px solid var(--primary-accent);
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-link:hover {
  text-decoration: none;
  color: inherit;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.feature-badge {
  background-color: #e9ecef;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.calculator-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #007bff;
}

.feature-card h4 {
  margin-top: 0;
  color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .input-row {
    grid-template-columns: 1fr;
  }
  
  .main-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .main-tab {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  
  .action-buttons {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 1.5rem;
  }
  
  .howto-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number {
    align-self: flex-start;
  }
  
  .metrics, .success-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .main-tab {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  
  .main-tab i {
    font-size: 1rem;
  }
  
  .blog-card, .how-to-card {
    padding: 1.5rem;
  }
  
  .results-section {
    padding: 1.5rem;
  }
  
  .hero-text p {
    margin-bottom: 2rem;
  }
  
  .overview-card, .usecase-card, .success-card, .technical-card, .advantage-card {
    padding: 1.5rem;
  }
}