/* Modern BaronTEL CSS - Clean Rewrite */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-blue: #1d4ed8;
  --primary-dark: #1e40af;
  --accent-purple: #8b5cf6;
  --accent-purple-dark: #7c3aed;
  --accent-purple-light: #a78bfa;
  --success-green: #10b981;
  --error-red: #ef4444;
  --text-dark: #1f2937;
  --text-medium: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f3f4f6;
  --border-light: #e5e7eb;
  
  /* Modern Gradients */
  --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  --landing-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-soft: 0 10px 40px rgba(139, 92, 246, 0.15);
  --shadow-strong: 0 20px 50px rgba(139, 92, 246, 0.25);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* Base styles */
* {
  box-sizing: border-box;
}

body.body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.header__logo img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.header__logo:hover img {
  transform: scale(1.05);
}

.header__call {
  color: #374151;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
}

.header__call-phone {
  background: var(--accent-purple);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.header__call-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  color: white;
  text-decoration: none;
}

.header__call-phone i {
  color: white;
}

/* Hero section */
.hero {
  background: var(--landing-gradient),
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  padding: 20px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3Ccircle cx='10' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(60px) translateY(60px); }
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Ensure ALL hero text is white */
.hero, .hero *, .hero h1, .hero p, .hero li, .hero strong {
  color: white;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}

.hero__list li {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: white;
}

.hero__list li::before {
  content: '✓';
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__note {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-soft);
  color: white;
}

/* Form */
.hero__form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--purple-gradient);
  border-radius: 24px 24px 0 0;
}

.form__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.hero__form-badge {
  margin-bottom: 1.5rem;
}

.hero__form-badge div:first-child {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 14px 20px;
  font-size: 15px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
  50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4); }
}

.hero__form-badge div:last-child {
  display: none; /* Remove second div */
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #374151;
  font-family: inherit;
}

.form__control:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.form__control::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

select.form__control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

/* Buttons */
.button, 
.button_default,
button[type="submit"],
.form__submit button {
  width: 100%;
  padding: 18px 24px;
  background: #8b5cf6;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  display: block;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.button::before,
.button_default::before,
button[type="submit"]::before,
.form__submit button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.button:hover::before,
.button_default:hover::before,
button[type="submit"]:hover::before,
.form__submit button:hover::before {
  left: 100%;
}

.button:hover,
.button_default:hover,
button[type="submit"]:hover,
.form__submit button:hover {
  background: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  color: white;
}

.button:active,
.button_default:active,
button[type="submit"]:active,
.form__submit button:active {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.secondary-button {
  display: inline-block;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: white;
  text-decoration: none;
}

.form__guarantee {
  text-align: center;
  font-size: 14px;
  color: #374151;
  margin-top: 1rem;
  font-weight: 600;
}

/* Social proof / Trust indicators */
.social-proof {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.social-proof h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.social-proof > .container > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.social-proof > .container > div > div {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  width: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-proof > .container > div > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.social-proof > .container > div > div div:first-child {
  font-size: 2.5rem;
  font-weight: 900;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
  text-align: center;
}

.social-proof > .container > div > div div:last-child {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  display: block;
  line-height: 1.4;
  text-align: center;
}

/* Features section */
.key-features {
  padding: 6rem 0;
  background: #ffffff;
}

.section__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-dark);
}

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

.feature-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--purple-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--purple-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1.1rem;
}

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

.feature-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.feature-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

/* Footer CTA */
.footer-cta {
  background: 
    linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20L30 10l10 10-10 10zm-10 0L20 10l10 10-10 10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: slide 15s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(40px) translateY(40px); }
}

.footer-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  color: white;
}

.footer-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  color: white;
}

/* Form messages */
.form-error {
  background: #fef2f2;
  border: 2px solid #fca5a5;
  color: #b91c1c;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-weight: 600;
}

.form-success {
  background: #f0fdf4;
  border: 2px solid #86efac;
  color: #166534;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1rem;
  text-align: center;
}

.form-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Misc features and sections (keeping existing styles) */
.features-overview,
.call-center-section,
.distributed-section,
.crm-integration-section,
.marketing-attribution,
.mobile-section,
.additional-features,
.testimonial-section {
  padding: 5rem 0;
}

.features-overview {
  background: 
    linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%),
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 54%);
  background-size: 100% 100%, 30px 30px;
  position: relative;
  color: white;
  overflow: hidden;
}

.call-center-section {
  background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.distributed-section {
  background: 
    linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3Ccircle cx='10' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: white;
  position: relative;
  overflow: hidden;
}

.distributed-section .section__title {
  color: white !important;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-medium);
  font-size: 14px;
}

/* Navigation Menu Fixes */
#p7PMM_1.p7PMMh07.horizontal-menu {
    width: 100% !important;
    overflow: hidden !important;
}

#p7PMM_1 .p7PMM.main-menu,
.p7PMMh07 .p7PMM.main-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

#p7PMM_1 .p7PMM.main-menu li,
.p7PMMh07 .p7PMM.main-menu li {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#p7PMM_1 .p7PMM.main-menu li a,
.p7PMMh07 .p7PMM.main-menu li a {
    padding: 10px 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    background-color: #003366 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 4px !important;
}

.p7ccm01-2col-auto-column2-cnt {
    overflow: hidden !important;
    max-width: 100% !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero__container,
  .row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__form {
    padding: 2rem;
  }
  
  .hero__list li {
    font-size: 16px;
  }
  
  .header__container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .features-grid,
  .features-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .social-proof > .container > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1200px) {
    #p7PMM_1 .p7PMM.main-menu li a,
    .p7PMMh07 .p7PMM.main-menu li a {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }
}

@media screen and (max-width: 1000px) {
    #p7PMM_1 .p7PMM.main-menu li a,
    .p7PMMh07 .p7PMM.main-menu li a {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }
}

@media screen and (max-width: 800px) {
    #p7PMM_1 .p7PMM.main-menu,
    .p7PMMh07 .p7PMM.main-menu {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    #p7PMM_1 .p7PMM.main-menu li,
    .p7PMMh07 .p7PMM.main-menu li {
        width: 100% !important;
        margin-bottom: 5px !important;
    }
    
    #p7PMM_1 .p7PMM.main-menu li a,
    .p7PMMh07 .p7PMM.main-menu li a {
        width: 100% !important;
        text-align: center !important;
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__list li {
    font-size: 15px;
  }
  
  .form__control {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .button,
  button[type="submit"] {
    padding: 14px 20px;
    font-size: 16px;
  }
  
  .social-proof > .container > div {
    grid-template-columns: 1fr;
  }
  
  .hero__form {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
}

/* Additional modern touches */
.bg-grd {
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* Add this to the very bottom of your modern-style.css file to fix the success message */

/* Form Success Message - Fixed Visibility */
.form-success {
  background: #dcfce7 !important; /* Light green background */
  border: 2px solid #22c55e !important; /* Green border */
  color: #15803d !important; /* Dark green text */
  padding: 1.5rem !important;
  border-radius: 12px !important;
  margin-top: 1rem !important;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1) !important;
}

.form-success-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: #15803d !important; /* Dark green */
}

.form-success div {
  color: #15803d !important; /* Dark green for all text */
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

/* Also fix the form error message for consistency */
.form-error {
  background: #fef2f2 !important;
  border: 2px solid #ef4444 !important;
  color: #dc2626 !important; /* Dark red text */
  padding: 1rem !important;
  border-radius: 12px !important;
  margin-top: 1rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1) !important;
}

/* Alternative approach - align grid items at the top */

.hero__container {
  align-items: start !important; /* This should already be there, but ensure it's set */
}

/* Remove any top margins/padding that might be pushing content down */
.hero__title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Alternative: Use flexbox approach for better control */
.hero__content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Make sure the form starts at the top too */
.hero__form {
  margin-top: 0 !important;
}

/* Add this CSS to make the hero title smaller so all bullets fit above the fold */

.hero__title--compact {
  font-size: clamp(2rem, 4vw, 3rem) !important; /* Smaller than the default clamp(2.5rem, 5vw, 4rem) */
  line-height: 1.1 !important; /* Tighter line height */
  margin-bottom: 1rem !important; /* Less bottom margin */
}

/* Mobile responsive for the compact title */
@media (max-width: 768px) {
  .hero__title--compact {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 480px) {
  .hero__title--compact {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
}

/* Fix for Edge browser dropdown visibility - Add to modern-style.css */

/* Enhanced dropdown styling for cross-browser compatibility */
select.form__control {
  position: relative !important;
  z-index: 1000 !important;
  background-color: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 12px center !important;
  background-repeat: no-repeat !important;
  background-size: 16px !important;
  padding-right: 40px !important;
}

/* Ensure dropdown options are visible in all browsers */
select.form__control option {
  background-color: #ffffff !important;
  color: #374151 !important;
  padding: 8px 12px !important;
}

/* Fix for Edge browser specific issues */
@supports (-ms-ime-align: auto) {
  select.form__control {
    background-image: none !important;
    padding-right: 20px !important;
  }
  
  select.form__control::-ms-expand {
    display: block !important;
    color: #6b7280 !important;
  }
}

/* Fix for older Edge versions */
select.form__control::-ms-expand {
  display: none;
}

/* Make sure form group has proper stacking context */
.form__group {
  position: relative !important;
  z-index: 100 !important;
}

/* Add this to the VERY END of modern-style.css - Edge Browser Fixes */

/* Compact title fix */
.hero__title--compact {
  font-size: 2.5rem !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
  .hero__title--compact {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .hero__title--compact {
    font-size: 1.75rem !important;
  }
}

/* Edge dropdown fix - more specific selectors */
.hero__form select.form__control,
.form__group select.form__control,
select.form__control {
  position: relative !important;
  z-index: 999 !important;
  background-color: white !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 16px !important;
  padding: 16px 40px 16px 20px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  width: 100% !important;
  cursor: pointer !important;
}

/* Edge specific fixes */
select.form__control::-ms-expand {
  display: none !important;
}

/* Focus state for dropdown */
.hero__form select.form__control:focus,
.form__group select.form__control:focus,
select.form__control:focus {
  outline: none !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* Ensure options are visible */
select.form__control option {
  background-color: white !important;
  color: #374151 !important;
  padding: 10px !important;
}

/* Force visibility in Edge */
@supports (-ms-ime-align: auto) {
  select.form__control {
    color: #374151 !important;
    background-color: white !important;
  }
}

/* ========================================
   CSS ADDITIONS FOR CANADIAN LANDING PAGE
   Add these styles to the bottom of your modern-style.css file
   ======================================== */

/* Fix bullet point alignment - ensures straight vertical line */
.hero__list--aligned {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}

.hero__list--aligned li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  display: block;
}

.hero__list--aligned li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24;
  font-weight: 900;
  font-size: 18px;
  width: 1.5rem;
  text-align: left;
}

/* Section subtitle styling */
.section__subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Form guarantee text */
.form__guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--text-medium);
  margin-top: 8px;
  font-weight: 500;
}

/* Key Features Section */
.key-features {
  padding: 3rem 0;
  background: white;
}

/* Footer CTA Section */
.footer-cta {
  background: var(--accent-purple);
  color: white;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

.footer-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.footer-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Form validation styles */
.form-error {
  background: #ffebee;
  border: 1px solid #e53935;
  padding: 15px;
  border-radius: 5px;
  color: #c62828;
  margin-top: 10px;
}

.form-success {
  background: #f4fdf5;
  border: 1px solid #4caf50;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 15px;
  color: #2e7d35;
}

.form-success-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Responsive updates */
@media (max-width: 768px) {
  .section__subtitle {
    font-size: 1rem;
  }
  
  .footer-cta h2 {
    font-size: 1.5rem;
  }
  
  .footer-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__list--aligned li {
    font-size: 16px;
  }
  
  .section__subtitle {
    font-size: 0.95rem;
  }
}

/* ========================================
   CSS ADDITIONS FOR BUSINESS INTELLIGENCE PLATFORM
   Add these styles to the bottom of your modern-style.css file
   ======================================== */

/* Compact hero design for above-the-fold focus */
.hero__title--compact {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__list--compact {
  margin-bottom: 1.5rem;
}

.hero__list--compact li {
  margin-bottom: 0.75rem;
  font-size: 16px;
  line-height: 1.4;
}

.hero__note--compact {
  padding: 0.75rem 1rem;
  font-size: 15px;
  margin-top: 1rem;
}
/* Mobile form positioning - move closer to header */
@media (max-width: 768px) {
  .hero.bg-grd {
    padding: 5px 0 80px !important; /* Reduce top padding specifically */
  }
  
  .hero__container {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  .hero__right {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero__form {
    margin-top: 0 !important;
  }
}
/* ===== BUSINESS.BARONTEL.CA HEADER IMPROVEMENTS ===== */

/* Make header much taller and logo bigger */
.header {
  padding: 30px 0 !important; /* Increase from 20px */
  min-height: 100px !important; /* Increase from 80px */
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.header__logo img {
  max-height: 80px !important; /* Increase from 60px */
  width: auto;
  height: auto;
}

/* Adjust call-to-action text styling */
.header__call {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: right;
  font-size: 16px;
}

.header__call-phone {
  margin-left: 10px;
  font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .header {
    padding: 20px 0 !important;
    min-height: 80px !important;
  }
  
  .header__logo img {
    max-height: 60px !important;
  }
  
  .header__container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .header__call {
    text-align: center;
    font-size: 14px;
  }
}