/* Main CSS - Enhanced Modern Styling */

/* CSS Custom Properties */
:root {
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --secondary-color: #6366f1;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
  --border-radius: 0.75rem;
  --border-radius-sm: 0.5rem;
  --border-radius-lg: 1rem;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
}

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

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Header Styles */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-brand {
  flex-shrink: 0;
  margin-right: 1rem;
}

.navbar-nav .nav-link {
  padding: 0.5rem 0.35rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.navbar-brand .logo {
  height: 22px;
  width: auto;
  max-width: 100%;
  transition: var(--transition-base);
  object-fit: contain;
  display: block;
}

.navbar-brand:hover .logo {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Mobile Navigation Toggle Button */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 18px;
  position: relative;
}

.navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Keep hamburger icon as three lines (no X animation) */
.navbar-toggler-icon span {
  transform: rotate(0deg);
  opacity: 1;
}

/* Responsive logo adjustments */
@media (max-width: 1200px) {
  .navbar-nav .nav-link {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .navbar-brand .logo {
    height: 30px;
    max-width: 300px;
  }
  .navbar-nav .nav-link {
    margin: 0 0.4rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand .logo {
    height: 18px;
    max-width: 85vw;
    width: auto;
  }
  .navbar-nav .nav-link {
    margin: 0 0.4rem;
    font-size: 0.85rem;
  }
  
  .navbar {
    min-height: 50px;
    padding: 0.3rem 0;
  }
  
  .container-fluid {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand .logo {
    height: 16px;
    max-width: 90vw;
    width: auto;
  }
  
  .navbar {
    min-height: 45px;
    padding: 0.2rem 0;
  }
  
  .navbar-toggler {
    padding: 0.15rem 0.25rem;
    font-size: 0.9rem;
    border: none;
    flex-shrink: 0;
    margin-left: 0.25rem;
  }
  
  .container-fluid {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
  
  .navbar-brand {
    padding-right: 0.25rem;
    flex-grow: 1;
    overflow: visible;
    white-space: nowrap;
  }
}



.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0.7rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-base);
  font-size: 0.95rem;
}

.navbar-collapse {
  transition: var(--transition-base);
}

.navbar-collapse.collapsing {
  transition: height 0.35s ease;
}

.navbar-collapse.show {
  display: block !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--background-white);
  position: relative;
  padding-top: 140px;
  padding-bottom: 2rem;
}

.hero-slider {
  position: relative;
  min-height: 400px;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.6s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  z-index: 2;
}

.hero-slide:not(.active) {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.hero-quick-links {
  margin-top: 2rem;
}

.quick-links-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.quick-links-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quick-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}

.quick-link i {
  font-size: 0.8rem;
}

.hero-image-overlay {
  position: relative;
}

.hero-stats {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 2rem;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  max-width: 100%;
  height: auto;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 5;
}

.hero-nav-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.hero-nav-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

.hero-nav-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* Services Section */
.services-section {
  background: var(--background-light);
  padding: 3rem 0;
}

.service-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.service-shape {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.1;
  transition: var(--transition-base);
}

.service-card:hover .service-shape {
  opacity: 0.2;
  transform: scale(1.1);
}

/* About Section */
.about-section {
  background: white;
  padding: 3rem 0;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.about-image-small {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-small img {
  max-width: 200px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.about-content-centered {
  max-width: 100%;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-title {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 2rem;
}

.about-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.about-description {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-signature {
  font-style: italic;
  color: var(--text-primary);
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  background: var(--background-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.about-mission {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  margin-top: 1.5rem;
}

.about-mission h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

/* Portfolio Section */
.portfolio-section {
  background: var(--background-light);
  padding: 3rem 0;
}

.portfolio-item {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.portfolio-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.portfolio-pricing {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 2rem 0;
}

.free-highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  margin-right: 0.5rem;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.contact-info {
  padding-right: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1rem;
  color: white;
}

.contact-content h4 {
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.contact-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-content a {
  color: var(--primary-color);
  font-weight: 500;
}

.marketing-toolbox-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.marketing-toolbox-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.marketing-toolbox-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.marketing-toolbox-highlight .contact-icon {
  background: var(--gradient-primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}



.contact-form {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  transition: var(--transition-base);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Portfolio Items Equal Height */
.portfolio-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Ensure content is clickable */
.portfolio-content {
  padding: 1.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 5;
}

.portfolio-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}



/* Video Thumbnail Styling */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.video-link:hover {
  text-decoration: none;
}

.video-link:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-link:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #fff;
  transform: scale(1.1);
}

.play-button i {
  color: #007bff;
  font-size: 24px;
  margin-left: 3px; /* Slight offset for visual centering */
}

.play-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Portfolio Links */
.portfolio-links {
  margin-top: 1rem;
  position: relative;
  z-index: 10;
}

.portfolio-links .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 11;
  pointer-events: auto;
}

.portfolio-links .btn:hover {
  text-decoration: none;
}

/* Footer */
.footer-section {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo .logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1) contrast(100%);
  transition: var(--transition-base);
  opacity: 1;
}

.footer-logo:hover .logo {
  transform: scale(1.05);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-credits {
  text-align: right;
}

.footer-credits a {
  color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  /* General mobile layout */
  section {
    padding: 2rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Hero section mobile optimization */
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-nav {
    bottom: 1rem;
    gap: 0.75rem;
  }
  
  .hero-nav-btn {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  
  .hero-nav-btn.active {
    background: var(--primary-color);
    border-color: white;
    box-shadow: 0 3px 15px rgba(59, 130, 246, 0.5);
    transform: scale(1.2);
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  /* Services section mobile */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .service-icon {
    margin-bottom: 1rem;
  }
  
  .service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .service-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* About section mobile */
  .about-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .about-image-small img {
    max-width: 150px;
    margin-bottom: 2rem;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .about-highlight {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .about-description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }
  
  .about-signature {
    margin: 1.5rem 0;
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .about-mission {
    padding: 1rem;
    margin-top: 1rem;
    text-align: left;
  }
  
  /* Portfolio section mobile */
  .portfolio-item {
    margin-bottom: 2rem;
  }
  
  .portfolio-content {
    padding: 1.5rem;
    text-align: center;
  }
  
  .portfolio-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .portfolio-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .portfolio-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .portfolio-links .btn {
    width: 100%;
    max-width: 200px;
    margin: 0;
  }
  
  /* Mobile logo optimization */
  @media (max-width: 576px) {
    .navbar-brand .logo {
      max-width: 160px;
      height: auto;
    }
    
    .navbar-brand span {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
    }
  }
  
  /* Contact section mobile */
  .contact-info {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .contact-item {
    text-align: center;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 1rem;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-credits {
    text-align: center;
  }
  
  .navbar-brand .logo {
    max-width: 160px;
    height: auto;
  }
  
  .navbar-nav .nav-link {
    margin: 0 0.5rem;
    padding: 0.75rem 0;
  }
  
  .navbar-collapse.show {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  /* Mobile navigation improvements */
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Improve mobile hero slider */
  .hero-slider {
    min-height: 350px;
  }
  
  /* Reduce slider navigation dots size on mobile */
  .hero-nav-btn {
    width: 3px;
    height: 3px;
    border-width: 0.5px;
  }
  
  .hero-nav-btn.active {
    transform: scale(1.1);
  }
  
  .hero-nav {
    gap: 0.25rem;
    bottom: 1.5rem;
  }
  
  .contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
  }
  
  .contact-item p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  
  .contact-item .btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 250px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 0.8rem;
    border-radius: var(--border-radius);
  }
  
  .contact-form textarea {
    min-height: 120px;
  }
  
  .contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-credits {
    text-align: center;
  }
}

@media (max-width: 576px) {
  /* Ultra-mobile optimizations */
  .container {
    padding: 0 0.75rem;
  }
  
  section {
    padding: 1.5rem 0;
  }
  
  /* Hero section ultra-mobile */
  .hero-section {
    min-height: 75vh;
    padding-top: 70px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-buttons .btn {
    max-width: 250px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Further reduce slider dots on ultra-mobile */
  .hero-nav-btn {
    width: 2px;
    height: 2px;
    border-width: 0.5px;
  }
  
  .hero-nav-btn.active {
    transform: scale(1.2);
  }
  
  .hero-nav {
    gap: 0.2rem;
    bottom: 1rem;
  }
  
  /* Navigation mobile improvements */
  .navbar {
    padding: 0.75rem 0;
  }
  
  /* Mobile navigation collapse - Fixed positioning */
  .navbar {
    position: relative;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    padding: 1rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 1rem;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Services ultra-mobile */
  .service-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-description {
    font-size: 0.95rem;
  }
  
  /* About section ultra-mobile */
  .about-image-small img {
    max-width: 120px;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-signature {
    padding: 0.75rem;
    margin: 1rem 0;
    font-size: 0.9rem;
  }
  
  .about-mission {
    padding: 0.75rem;
  }
  
  /* Portfolio ultra-mobile */
  .portfolio-title {
    font-size: 1.3rem;
  }
  
  .portfolio-description {
    font-size: 0.95rem;
  }
  
  .portfolio-links .btn {
    max-width: 180px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Mobile navigation brand size fix */
  .navbar-brand {
    font-size: 12px !important;
    max-width: 200px !important;
    flex-shrink: 1;
  }
  
  .navbar-brand svg {
    height: 24px !important;
    width: auto !important;
  }
  
  /* Enhanced hero nav buttons for ultra-mobile */
  .hero-nav {
    bottom: 0.75rem;
    gap: 0.6rem;
  }
  
  .hero-nav-btn {
    width: 14px;
    height: 14px;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    min-height: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 50%;
    position: relative;
  }
  
  .hero-nav-btn.active {
    background: var(--primary-color);
    border-color: white;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.6);
    transform: scale(1.2);
  }
  
  /* Contact ultra-mobile */
  .contact-item {
    padding: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-item h4 {
    font-size: 1.1rem;
  }
  
  .contact-item p {
    font-size: 0.95rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem;
  }
  
  /* Section headers ultra-mobile */
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Mobile-specific touch optimizations */
  .btn, .contact-item, .service-card, .portfolio-item {
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
    touch-action: manipulation;
  }
  
  /* Prevent zoom on focus for form inputs */
  input[type="text"], input[type="email"], textarea {
    font-size: 16px;
    -webkit-appearance: none;
    border-radius: var(--border-radius);
  }
  
  /* Better button spacing */
  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Mobile-specific performance optimizations */
@media (max-width: 768px) {
  /* Reduce motion for better mobile performance */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Better touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

/* Apps Page Styles */
.page-header {
  background: var(--background-white);
  color: var(--text-primary);
  padding: 90px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.page-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

.apps-intro {
  background: var(--background-light);
  padding: 2rem 0 3rem;
}

.apps-grid {
  background: white;
  padding: 3rem 0 2rem;
}

.app-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: white;
  font-size: 1.1rem;
}

.app-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.app-category {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.8rem;
}

.app-content {
  flex-grow: 1;
}

.app-description {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 0.9rem;
}

.app-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-features li {
  padding: 0.2rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.app-features li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.app-pricing {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.pricing-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-option {
  flex: 1;
  min-width: 110px;
  text-align: center;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  transition: var(--transition-base);
}

.price-option.featured {
  border-color: var(--primary-color);
  background: var(--bg-light);
}

.price-option .price {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.price-option .period {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.price-option .btn {
  width: 100%;
}

.cta-section {
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Apps Page Mobile Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .app-header {
    flex-direction: column;
    text-align: center;
  }
  
  .app-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .pricing-options {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Featured App Styling */
.featured-app {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.featured-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.featured-app .app-icon {
  background: var(--gradient-primary);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 1.5rem;
  box-shadow: var(--shadow-md);
}

.featured-app .app-title {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.featured-app .app-category {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-app .app-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.featured-app .app-features ul {
  list-style: none;
  padding: 0;
}

.featured-app .app-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.featured-app .app-features li:last-child {
  border-bottom: none;
}

.featured-app .app-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.featured-app .price-option {
  background: white;
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.featured-app .price-option.featured {
  background: var(--bg-light);
  border-color: var(--primary-color);
}

.featured-app .price-option .btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-base);
}

.featured-app .price-option .btn-outline-primary {
  background: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
}

.featured-app .price-option .btn-outline-primary:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

/* App Benefits Styling */
.app-benefits {
  background: var(--background-light);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-lg);
  margin-top: 1.5rem;
  border: 1px solid var(--border-color);
}

.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.benefit-item {
  padding: 1.5rem 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Mobile Responsive for Featured App */
@media (max-width: 768px) {
  .featured-app .app-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .featured-app .app-title {
    font-size: 1.5rem;
  }
  
  .featured-app .app-description {
    font-size: 1.1rem;
  }
  
  .benefits-title {
    font-size: 2rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 1.5rem 1rem;
  }
}

/* Main Street Mailer Page Styles */
.mailer-hero {
  background: white;
  padding: 100px 0 40px;
}

.mailer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mailer-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mailer-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mailer-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.mailer-video-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  background: white;
}

.mailer-video-wrapper .ratio {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--background-light);
}

.mailer-value {
  background: var(--background-light);
  padding: 40px 0;
  overflow: visible;
}

.mailer-value .container {
  overflow: visible;
}

.mailer-value .row {
  overflow: visible;
}

.value-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: visible;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

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

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-base);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.mailer-how-it-works {
  background: white;
  padding: 40px 0;
}

.how-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

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

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition-base);
}

.how-card:hover .step-number {
  transform: scale(1.1);
}

.how-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.how-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.mailer-benefits {
  background: var(--background-light);
  padding: 40px 0;
}

.benefit-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

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

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon-small {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.benefit-card:hover .benefit-icon-small {
  transform: scale(1.1);
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.mailer-toolbox {
  background: white;
  padding: 40px 0;
}

.toolbox-promo {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.toolbox-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.toolbox-promo:hover::before {
  transform: scaleX(1);
}

.toolbox-promo:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.toolbox-promo h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.toolbox-promo p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.toolbox-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mailer-cta {
  background: var(--background-light);
  padding: 40px 0;
}

.cta-box {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.cta-box:hover::before {
  transform: scaleX(1);
}

.cta-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.cta-box h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile optimizations for Mailer page */
@media (max-width: 768px) {
  .mailer-hero {
    padding: 80px 0 30px;
  }
  
  .mailer-title {
    font-size: 1.75rem;
  }
  
  .mailer-subtitle {
    font-size: 1rem;
  }
  
  .mailer-buttons {
    flex-direction: column;
  }
  
  .mailer-buttons .btn {
    width: 100%;
  }
  
  .toolbox-buttons {
    flex-direction: column;
  }
  
  .toolbox-buttons .btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .toolbox-promo,
  .cta-box {
    padding: 1.5rem;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon-small {
    margin: 0 auto 1rem;
  }
}

/* Starter Kit Page Alignment Fixes */
.mailer-hero {
  padding: 140px 0 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Equal height cards in What's Included section */
.mailer-how-it-works .row {
  display: flex;
  flex-wrap: wrap;
}

.mailer-how-it-works .how-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mailer-how-it-works .how-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mailer-how-it-works .how-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.mailer-how-it-works .how-card ul {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.how-number {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition-base);
}

.how-card:hover .how-number {
  transform: scale(1.1);
}

.how-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Section spacing consistency */
.mailer-value,
.mailer-how-it-works,
.mailer-benefits,
.mailer-cta,
.mailer-toolbox {
  padding: 60px 0;
}

/* Pricing card alignment fix */
.value-card.pricing-card {
  position: relative;
  padding-top: 2.5rem;
}

/* Mobile optimizations for starter kit */
@media (max-width: 768px) {
  .mailer-hero {
    padding: 100px 0 40px;
  }
  
  .mailer-hero .row {
    gap: 2rem;
  }
  
  .mailer-video-wrapper {
    margin-top: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .value-card,
  .how-card,
  .benefit-card {
    margin-bottom: 1.5rem;
  }
  
  .mailer-value,
  .mailer-how-it-works,
  .mailer-benefits,
  .mailer-cta,
  .mailer-toolbox {
    padding: 40px 0;
  }
}
