/* Modern Design System for Edwin Corporate Law Firm Trademark Consultancy */
:root {
  --primary: #1e3a8a;
  --primary-light: #2563eb;
  --primary-dark: #0f172a;
  --secondary: #d97706;
  --secondary-hover: #b45309;
  --accent: #f59e0b;
  --emerald: #059669;
  --emerald-light: #d1fae5;
  --danger: #dc2626;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #090d16;
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* Header & Top Bar */
.top-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 100%);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-item i {
  color: var(--accent);
}

.top-badge {
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-links a:hover {
  color: var(--accent);
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  height: 44px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  height: 44px;
  width: auto;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.logo span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-cta { display: none; }

.nav-link {
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
  font-size: 0.88rem;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.nav-link:hover {
  color: var(--primary);
  background: #f1f5f9;
}

.nav-btn {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.38);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--primary);
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.05) 0%, rgba(248, 250, 252, 1) 90%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.highlight-item i {
  color: var(--emerald);
  font-size: 1.1rem;
}

/* Search Tool Component in Hero */
.tm-search-box {
  background: white;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  margin-top: 10px;
}

.search-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.search-box-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-input-wrapper {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.search-input-wrapper input:focus {
  border-color: var(--primary-light);
  outline: none;
}

.search-input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-select {
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: white;
  color: var(--text-main);
}

.search-btn {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.38);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.search-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.5);
}

/* Search Result Box */
.search-result-box {
  margin-top: 15px;
  padding: 15px;
  border-radius: var(--radius-sm);
  display: none;
}

.search-result-box.active {
  display: block;
}

.result-available {
  background: var(--emerald-light);
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.result-taken {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Lead Form Card */
.lead-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.lead-card-badge {
  position: absolute;
  top: -14px;
  right: 35px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.lead-card-header {
  text-align: center;
  margin-bottom: 25px;
}

.lead-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.lead-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.42);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
  cursor: pointer;
}

.submit-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.55);
}

.form-trust-text {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Trust Bar / Counter Section */
.trust-bar {
  background: var(--primary-dark);
  color: white;
  padding: 35px 0;
}

.trust-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Section Shared Layouts */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Client Video Proof Showcase Section */
.client-video-section {
  padding: 55px 0 65px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.client-video-header {
  text-align: center;
  margin-bottom: 35px;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.client-video-header span {
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.client-video-header h3 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.25;
}

.client-video-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-wrapper-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 12px 36px rgba(30, 58, 138, 0.15);
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.video-frame video {
  width: 100%;
  height: auto;
  max-height: 560px;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.video-footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.v-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.v-info-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Founder Profile Styling */
.founder-box {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.founder-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 35px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.founder-avatar {
  text-align: center;
}

.founder-avatar-img {
  width: 170px;
  height: 210px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.18);
  border: 3px solid #eff6ff;
  display: block;
}

.founder-badge {
  display: inline-block;
  background: #fef3c7;
  color: #b45309;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.founder-content .founder-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-content p {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 20px;
}

.founder-quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--secondary);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Why Register / Benefits Grid */
.benefits-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #bfdbfe;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  background: #eff6ff;
  color: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Class Finder Section */
.class-explorer-box {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.class-search-bar {
  display: flex;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto 35px;
}

.class-search-bar input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.class-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: border-color 0.2s;
}

.class-card:hover {
  border-color: var(--primary-light);
}

.class-badge {
  display: inline-block;
  background: var(--primary-dark);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.class-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.class-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Process Timeline */
.process-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 35px 25px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.process-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Pricing Cards */
.pricing-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--emerald);
}

input:checked + .slider:before {
  transform: translateX(28px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}

.pricing-card.popular {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-light);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.pricing-card .price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-card .price-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card .govt-fee-note {
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.pricing-features li i {
  color: var(--emerald);
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  background: #ecfdf5;
  color: #047857;
  border: 2px solid #059669;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.pricing-card.popular .pricing-btn {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.42);
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

.pricing-card.popular .pricing-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.55);
}

/* Documents Tab Section */
.docs-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.docs-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}

.tab-btn {
  padding: 12px 24px;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.docs-content-box {
  background: white;
  border-radius: var(--radius-md);
  padding: 35px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
}

.doc-item i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--primary-light);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-light);
}

/* Floating Contact & Call Buttons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25d366;
}

.float-phone {
  background: var(--primary-light);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: #94a3b8;
  padding: 70px 0 25px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  height: 48px;
  width: auto;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 25px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.3rem;
  color: var(--text-muted);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--emerald);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 3000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: none;
}

.toast-msg.active {
  display: block;
}

/* ============================================
   SERVICES DROPDOWN — custom select matching
   .form-control style (added)
   ============================================ */

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select .select-box {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: white;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
}

.custom-select .select-box.has-value {
  color: var(--text-main);
}

.custom-select.open .select-box,
.custom-select .select-box:focus-visible {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.custom-select .select-box .arrow {
  border: solid var(--text-muted);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.custom-select.open .arrow {
  transform: rotate(-135deg);
  border-color: var(--primary-light);
}

.custom-select .options-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
}

.custom-select.open .options-list {
  display: block;
}

.custom-select .option-item {
  padding: 11px 14px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.custom-select .option-item.placeholder {
  display: none;
}

.custom-select .option-item:hover {
  background: var(--bg-alt);
}

.custom-select .option-item.selected {
  background: #eff6ff;
  color: var(--primary);
  font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 1180px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; padding: 16px 20px 22px; background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid var(--border-light); box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1); flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-menu.is-open { display: flex; }
  .nav-link { display: block; padding: 10px 4px; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-toggle:hover { background: #eff6ff; }
  .hero-container { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .hero-content { max-width: 820px; }
  .hero-form-wrapper { max-width: 620px; width: 100%; margin: 0 auto; }
}

@media (max-width: 1024px) {
  .benefits-grid, .process-container, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-container { justify-content: center; text-align: center; }
  .top-info, .top-links { justify-content: center; flex-wrap: wrap; }
  .top-links { font-size: 0.78rem; }
  .nav-container { padding-top: 10px; padding-bottom: 10px; }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero { padding: 45px 0 55px; }
  .hero-highlights { gap: 12px; margin-bottom: 28px; }
  .tm-search-box, .lead-card { padding: 24px 20px; }
  .search-input-group > * { width: 100%; }
  .search-select, .search-btn { min-height: 50px; }
  .search-btn { justify-content: center; }
  .section { padding: 60px 0; }
  .section-header { padding: 0 20px; margin-bottom: 38px; }
  .section-title { font-size: 1.9rem; }
  .benefits-grid, .process-container, .pricing-grid, .trust-container {
    grid-template-columns: 1fr;
  }
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
  .founder-quote {
    text-align: left;
  }
  .pricing-card.popular {
    transform: none;
  }
  .doc-list {
    grid-template-columns: 1fr;
  }
  .docs-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .tab-btn { flex: 0 0 auto; }
  .pricing-toggle { flex-wrap: wrap; text-align: center; }
  .video-footer-info { grid-template-columns: 1fr; gap: 12px; }
  .footer-container { gap: 30px; }
}

@media (max-width: 560px) {
  .top-bar { padding: 7px 0; }
  .top-info-item:nth-child(2), .top-badge, .top-links a:not(:first-child) { display: none; }
  .logo { font-size: 1.25rem; gap: 8px; }
  .logo-icon { width: 36px; height: 36px; flex-basis: 36px; font-size: 1.1rem; }
  .nav-container > .nav-btn { display: none; }
  .nav-mobile-cta { display: block; padding-top: 10px; }
  .nav-mobile-cta .nav-btn { width: 100%; }
  .hero-container, .benefits-grid, .process-container, .pricing-container, .class-explorer-box { padding-left: 16px; padding-right: 16px; }
  .hero-title { font-size: 1.85rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-tag { font-size: 0.74rem; padding: 6px 10px; }
  .hero-highlights { grid-template-columns: 1fr; }
  .highlight-item { font-size: 0.9rem; }
  .search-box-header { align-items: flex-start; flex-direction: column; gap: 4px; }
  .search-box-header h4 { font-size: 0.98rem; }
  .search-input-wrapper input, .search-select { font-size: 0.88rem; }
  .lead-card-badge { right: 18px; }
  .lead-card-header h3 { font-size: 1.3rem; }
  .section-title { font-size: 1.65rem; }
  .section-desc { font-size: 0.98rem; }
  .benefit-card, .process-step, .pricing-card, .docs-content-box { padding: 26px 20px; }
  .trust-bar { padding: 28px 0; }
  .trust-container { gap: 20px; }
  .stat-item h3 { font-size: 1.9rem; }
  .class-grid { grid-template-columns: 1fr; max-height: 440px; }
  .faq-container, .docs-container { padding-left: 16px; padding-right: 16px; }
  .faq-question, .faq-answer { padding-left: 18px; padding-right: 18px; }
  .faq-question { font-size: 0.98rem; gap: 12px; }
  .footer-container { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .floating-actions { right: 16px; bottom: 16px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .modal-content { border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 92vh; overflow-y: auto; padding: 30px 20px 24px; }
}