:root {
  --primary: #2e4ef8; /* More vibrant blue */
  --primary-dark: #1a36d9;
  --accent: #00e676; /* Brighter green */
  --secondary: #ff5722; /* Vibrant orange for accents */
  --tertiary: #7c4dff; /* Purple for additional accents */
  --dark: #222831;
  --light: #f9f9f9;
  --gray: #767676;
  --light-gray: #f0f0f0;
  --border: #e5e5e5;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --logo-font: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 20px 0;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo-text {
  font-family: var(--logo-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.online-badge {
  background-color: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--primary);
}

.phone-icon {
  width: 20px;
  height: 20px;
}

.uk-flag {
  width: 24px;
  height: auto;
  margin-left: 5px;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.price-tag {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(46, 78, 248, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(46, 78, 248, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.btn-secondary:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 87, 34, 0.4);
}

.btn-outline {
  background-color: white;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--light);
  color: var(--primary-dark);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background-color: var(--light);
}

.video-container {
  max-width: 800px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
}

.video-description {
  text-align: center;
  font-size: 18px;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto;
}

/* Video Tabs */
.video-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.video-tab-button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background-color: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-tab-button:hover {
  background-color: #e0e0e0;
}

.video-tab-button.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.video-pane {
  display: none;
}

.video-pane.active {
  display: block;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

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

.feature-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.feature-card:nth-child(2) {
  border-top: 4px solid var(--secondary);
}

.feature-card:nth-child(3) {
  border-top: 4px solid var(--tertiary);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-description {
  color: var(--gray);
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background-color: var(--light);
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 15px;
}

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

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-description {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Problems We Solve */
.problems {
  padding: 80px 0;
  background-color: white;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 20px;
  background-color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:after {
  content: '+';
  font-size: 1.5rem;
}

.accordion-button.active:after {
  content: '−';
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding-bottom: 20px;
  color: var(--gray);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--light);
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
}

.author-location {
  font-size: 0.9rem;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--light);
  color: var(--primary-dark);
}

/* Footer */
footer {
  padding: 40px 0;
  background-color: var(--dark);
  color: white;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.address-section {
  margin-top: 30px;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

.address-section p {
  margin-bottom: 8px;
}

.address-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-section a:hover {
  color: white;
  text-decoration: underline;
}

.map-link {
  display: inline-flex;
  align-items: center;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Sticky CTA for mobile */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}

.sticky-cta .btn-primary {
  flex: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-image {
    order: -1;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .steps::before {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .sticky-cta {
    display: flex;
  }
}

.hero-features-list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 30px;
}

.hidden-by-default {
  display: none;
}

html { scroll-behavior: smooth; }
.form-section-wrapper { padding: 60px 0; background-color: var(--light); }
#registration-form-container { max-width: 800px; margin: 0 auto; background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
fieldset { border: none; padding: 0; margin-bottom: 20px; }
legend { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; color: var(--dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; }
.form-navigation { text-align: right; margin-top: 20px;}
.nav-button, .submit-button { background-color: var(--primary); color: white; padding: 12px 24px; border-radius: var(--radius); font-weight: 600; text-decoration: none; display: inline-block; transition: all 0.3s ease; border: none; cursor: pointer; }
.nav-button:hover, .submit-button:hover { background-color: var(--primary-dark); }
#prev-button { background-color: var(--gray); }
#prev-button:hover { background-color: #555; }
.form-progress { display: flex; justify-content: space-between; margin-bottom: 30px; position: relative; }
.progress-step { text-align: center; flex-grow: 1; }
.step-number { width: 40px; height: 40px; background-color: var(--light-gray); color: var(--gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 10px; border: 2px solid var(--border); }
.step-label { font-size: 0.9rem; color: var(--gray); }
.progress-step.active .step-number { background-color: var(--primary); color: white; border-color: var(--primary); }
.progress-step.active .step-label { color: var(--primary); font-weight: 600; }

.form-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}
