/* ============================================
   MODERN MASTERCLASS LANDING PAGE STYLES - AIM TECH BRAND
   ============================================ */

/* === CSS VARIABLES - AIM TECH BRAND === */
:root {
  --primary: #1D4ED8;
  --primary-dark: #1E40AF;
  --primary-light: #3B82F6;
  --accent: #0F766E;
  --accent-light: #14B8A6;
  --success: #10B981;
  --light: #F0F9FF;
  --dark: #1E3A8A;
  --dark-secondary: #1D3557;
  --gray: #64748B;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --text: #1E293B;
  --text1: #ff5857;
  --gradient: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
  --gradient-accent: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
  --gradient-light: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 50%, #F0FDFA 100%);
  --shadow-sm: 0 2px 8px rgba(29, 78, 216, 0.08);
  --shadow-md: 0 4px 16px rgba(29, 78, 216, 0.12);
  --shadow-lg: 0 8px 32px rgba(29, 78, 216, 0.16);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
  --shadow-colored: 0 8px 32px rgba(29, 78, 216, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--gradient-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === WRAPPER & CONTAINER === */
.mfp-page-wrapper {
  min-height: 100vh;
  padding: 20px;
}

.mfp-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* === HERO SECTION === */
.mfp-hero {
  text-align: center;
  padding: 0px 20px 20px;
  position: relative;
}

/* Countdown Timer */
.mfp-countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  direction: ltr;
}

.timer-box {
  background: var(--gradient);
  padding: 15px 10px;
  border-radius: var(--radius);
  min-width: 80px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timer-box::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;
}

.timer-box:hover::before {
  left: 100%;
}

.timer-box:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.timer-box span {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.timer-box label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  font-weight: 600;
}

.colon {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Badge */
.mfp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 15px;
  animation: slideInDown 0.6s ease-out;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

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

/* Titles */
.mfp-main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mfp-thanking-page {
    font-size: clamp(25px, 5vw, 56px);
    display: flex;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 16px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    justify-content: center;
    align-items: center;
}

.mfp-sub-title {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Image */
.mfp-hero-image {
  max-width: 900px;
  margin: 10px auto 0px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(29, 78, 216, 0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.mfp-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

/* CTA Badge */
.screen-cta-badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(224, 242, 254, 0.8) 100%);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin: auto;
  max-width: 450px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.screen-cta-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  animation: rotateGradient 8s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.screen-cta-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.screen-cta-badge small {
  display: block;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.screen-cta-badge strong {
  display: block;
  font-size: 22px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

/* Student Pill */
.student-pill {
  display: flex;
  align-items: center;
  max-width: fit-content;
  justify-self: anchor-center;
  gap: 5px;
  background: var(--white);
  margin-top: 25px;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border: 2px solid var(--light);
  transition: var(--transition);
  position: relative;
  z-index: 10;
}

.student-pill p {
  margin: 0 10px;
}

.student-pill:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.student-pill .mfp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--white);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* === REGISTRATION SECTION === */
.mfp-laptop-section {
  max-width: 600px;
  margin: 30px auto;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* ─── CRITICAL: allow dropdown to escape the card ─── */
.laptop-chassis {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(59, 130, 246, 0.1);
  overflow: visible; /* was 'hidden' — changed so ITI dropdown can escape */
}

/* Keep the top gradient bar using a pseudo-element (needs overflow:visible on parent) */
.laptop-chassis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  border-radius: 24px 24px 0 0;
  z-index: 1;
  width: 95%;
  margin-right: 2.5%;
}

.laptop-chassis::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.laptop-chassis:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.laptop-camera { display: none; }

.laptop-screen {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.screen-content {
  padding: 0;
  background: transparent;
  position: relative;
  overflow: visible;
}

.screen-content::before { display: none; }
.laptop-base { display: none; }
.laptop-base::after { display: none; }

/* === FORM STYLES === */
.mfp-form {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  direction: ltr;
  position: relative;
  z-index: 1;
}

/* All form rows */
.mfp-form > div {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  animation: slideInLeft 0.5s ease-out backwards;
}

.mfp-form > div:nth-child(1) { animation-delay: 0.1s; }
.mfp-form > div:nth-child(2) { animation-delay: 0.2s; }
.mfp-form > div:nth-child(3) { animation-delay: 0.3s; }

/* The phone row needs overflow visible so the ITI dropdown escapes */
.mfp-form > div:nth-child(3) {
  overflow: visible;
}

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

/* Default input styling (name + email fields) */
.mfp-form div input {
  width: 100%;
  padding: 22px 24px 22px 56px;
  border: 2px solid #DBEAFE;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background: #F8FAFC;
  color: var(--text);
  display: block;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.mfp-form input::placeholder {
  color: #93C5FD;
  font-weight: 400;
}

.mfp-form input:hover {
  border-color: #BFDBFE;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.mfp-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.1), 0 8px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

/* Input icons (user + email rows only) */
.input-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
  opacity: 0.6;
  z-index: 2;
}

.mfp-form > div:focus-within .input-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}

.input-icon.user::before  { content: '👤'; }
.input-icon.email::before { content: '✉️'; }
.input-icon.phone::before { content: '📱'; }

/* Hide the phone emoji icon — ITI provides its own flag button */
.input-icon.phone {
  display: none;
}

/* Submit button */
.mfp-form button[type="submit"] {
  width: 100%;
  padding: 20px 40px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-colored);
  margin-top: 16px;
  display: block;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.5s ease-out 0.4s backwards;
}

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

.mfp-form button[type="submit"]::after {
  content: '→';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: var(--transition);
  opacity: 0;
}

.mfp-form button[type="submit"]:hover::before { left: 100%; }
.mfp-form button[type="submit"]:hover::after  { opacity: 1; right: 25px; }

.mfp-form button[type="submit"]:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(29, 78, 216, 0.35);
}

.mfp-form button[type="submit"]:active {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
}

/* ============================================================
   INTL TEL INPUT (ITI) — PHONE FLAG PICKER
   ============================================================ */

/* Make the ITI wrapper fill the row exactly like other inputs */
.iti {
  width: 100%;
  display: block;
  position: relative; /* needed so the flag button positions correctly */
}

/* The actual <input type="tel"> inside ITI */
.iti input[type="tel"],
.iti input[type="tel"]:focus {
  width: 100%;
  padding: 22px 24px 22px 90px !important; /* extra left space for flag + dial code */
  border: 2px solid #DBEAFE !important;
  border-radius: 14px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  background: #F8FAFC !important;
  color: var(--text) !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
  box-sizing: border-box !important;
}

.iti input[type="tel"]:hover {
  border-color: #BFDBFE !important;
  background: var(--white) !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08) !important;
}

.iti input[type="tel"]:focus {
  border-color: var(--primary) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.1), 0 8px 24px rgba(59, 130, 246, 0.15) !important;
  outline: none !important;
  transform: translateY(-2px);
}

/* Flag button (the clickable area on the left) */
.iti__flag-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 8px 0 12px;
  display: flex;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}

.iti__selected-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
  height: 100%;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background: rgba(29, 78, 216, 0.06);
  outline: none;
}

.iti__arrow {
  border-top: 5px solid #64748B;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  margin-left: 4px;
  transition: transform 0.2s;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 5px solid #1D4ED8;
  transform: none;
}

/* ─── DROPDOWN — attached to <body> via dropdownContainer option ─── */
.iti__country-list {
  position: absolute !important; /* JS sets top/left when attached to body */
  top: 45px;
  left: 0;
  z-index: 999999 !important;
  list-style: none;
  padding: 6px 0;
  margin: 4px 0 0;
  background: #ffffff;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.18), 0 2px 8px rgba(0,0,0,0.08);
  max-height: 175px;
  overflow-y: auto;
  min-width: 300px;
  font-size: 14px;
}

/* Scrollbar styling for the dropdown */
.iti__country-list::-webkit-scrollbar {
  width: 6px;
}
.iti__country-list::-webkit-scrollbar-track {
  background: #F8FAFC;
  border-radius: 6px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background: #BFDBFE;
  border-radius: 6px;
}
.iti__country-list::-webkit-scrollbar-thumb:hover {
  background: #3B82F6;
}

.iti__country {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.15s;
  color: var(--text);
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: #EFF6FF;
}

.iti__country.iti__active {
  background: #DBEAFE;
  font-weight: 600;
}

.iti__flag-box {
  flex-shrink: 0;
}

.iti__country-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  color: #374151;
}

.iti__dial-code {
  color: #64748B;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.iti__divider {
  border-top: 1px solid #E2E8F0;
  margin: 4px 0;
  padding: 0;
}

/* Hide the dropdown when it has the hide class */
.iti__hide {
  display: none !important;
}

/* Preferred countries separator */
.iti__preferred .iti__country-name {
  font-weight: 600;
}

/* ============================================================
   END OF ITI STYLES
   ============================================================ */

/* === CONTENT SECTIONS === */
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.row.right-layout {
  grid-template-columns: auto 1fr;
}

.row.right-layout .content-col { order: 2; }
.row.right-layout .visual-col  { order: 1; }

.content-col {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.content-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.3);
}

.header-tag {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mfp-text-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

.mfp-text-body strong {
  color: var(--primary);
  font-weight: 700;
}

.visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.curve-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  margin-bottom: 16px;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

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

.icon-box svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

/* === COMPARISON SECTION === */
.mfp-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 35px 0;
}

.comp-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.comp-card.black {
  background: var(--gradient);
  color: var(--white);
  border-color: rgba(255,255,255,0.1);
}

.comp-card.gray {
  background: var(--white);
  border: 2px solid #E0F2FE;
}

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

.comp-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 800;
}

.comp-card.black h3 { color: var(--white); }
.comp-card.gray h3  { color: var(--dark); }

.comp-card ul {
  list-style: none;
  padding-right: 8px;
}

.comp-card li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.comp-card.gray li {
  border-bottom-color: #E0F2FE;
  color: var(--text);
}

.comp-card li:last-child { border-bottom: none; }

.check {
  color: var(--primary-light);
  font-size: 20px;
  flex-shrink: 0;
  font-weight: bold;
}

.cross {
  color: #EF4444;
  font-size: 20px;
  flex-shrink: 0;
  font-weight: bold;
}

/* === FAQ SECTION === */
.mfp-faq-section {
  max-width: 800px;
  margin: 35px auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #E0F2FE;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-q-bar {
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  background: linear-gradient(135deg, #F0F9FF 0%, #F8FAFC 100%);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
  padding-right: 60px;
}

.faq-q-bar::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item:hover .faq-q-bar::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-q-bar.active::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

.faq-star-icon {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.faq-a-box span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--gray);
  margin: 0 8px;
}

.faq-item .faq-a-box {
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
}

/* FAQ Answer Box — animated */
.faq-a-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 32px;
}

.faq-a-box.show {
  max-height: 500px;
  opacity: 1;
  padding: 24px 24px;
}

/* === VIDEO SECTION === */
.mfp-video-section {
  max-width: 800px;
  margin: 20px auto;
}

.mfp-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.2);
}

.mfp-video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mfp-video-placeholder {
  background: var(--gradient);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.2);
}

.mfp-video-placeholder .video-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
}

.mfp-video-placeholder .video-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.mfp-video-placeholder .video-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

/* === WHATSAPP BUTTON === */
.mfp-whatsapp-wrapper {
  max-width: 400px;
  margin: 0px auto;
}

.mfp-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 3px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.mfp-whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  color: white;
}

.mfp-whatsapp-btn .whatsapp-text       { text-align: center; }
.mfp-whatsapp-btn .whatsapp-main-text  { display: block; font-size: 1.4rem; }
.mfp-whatsapp-btn .whatsapp-sub-text   { display: block; font-size: 1.3rem; opacity: 0.9; }

/* === EMAIL INBOX NOTICE === */
.mfp-inbox-notice {
  max-width: 700px;
  margin: 20px auto;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  color: white;
  text-align: center;
  direction: ltr;
}

.mfp-inbox-notice .inbox-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mfp-email-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.email-icon-item {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-icon-item svg {
  width: 50px;
  height: 50px;
  display: block;
}

.email-icon-item:hover {
  transform: translateY(-5px);
}

.mfp-spam-notice {
  margin: 5px 0 0 0;
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .mfp-laptop-section {
    max-width: 90%;
    margin: 25px auto;
  }
  .laptop-chassis {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .mfp-page-wrapper { padding: 10px 16px; }
  .mfp-hero         { padding: 0px; }

  .mfp-countdown-wrapper { gap: 4px; }

  .timer-box         { min-width: 50px; padding: 10px 5px; }
  .timer-box span    { font-size: 16px; }
  .timer-box label   { font-size: 7px; }
  .colon             { font-size: 18px; }

  .visual-col { margin: 20px auto; }

  .row      { gap: 10px; margin-bottom: 7px; }
  .icon-box { width: 45px; height: 45px; }
  .icon-box svg { width: 25px; height: 25px; }

  .header-tag    { padding: 7px 18px; margin-bottom: 7px; }
  .mfp-text-body { line-height: 1.6; }
  .screen-content { padding: 0; }

  .mfp-comparison { grid-template-columns: 1fr; gap: 24px; }
  .content-col    { padding: 14px; }

  .laptop-chassis { padding: 36px 28px; }

  .mfp-form > div { margin-bottom: 20px; }

  .mfp-form input,
  .iti input[type="tel"] {
    padding: 16px 20px 16px 80px !important;
    font-size: 15px !important;
  }

  .input-icon { left: 18px; font-size: 20px; }

  .mfp-form button[type="submit"] { padding: 18px 32px; font-size: 16px; }

  .mfp-email-icons { gap: 15px; }
  .email-icon-item { padding: 10px; }
  .email-icon-item svg { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .mfp-main-title { font-size: 32px; }
  .mfp-sub-title  { font-size: 18px; }

  .screen-cta-badge { padding: 18px 20px; max-width: 100%; }

  .laptop-chassis { padding: 32px 24px; border-radius: 20px; }

  .mfp-form > div { margin-bottom: 18px; }

  .mfp-form input,
  .iti input[type="tel"] {
    padding: 15px 18px 15px 76px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }

  .input-icon { left: 16px; font-size: 19px; }

  .mfp-form button[type="submit"] {
    padding: 17px 28px;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 12px;
  }

  .comp-card   { padding: 32px 24px; }
  .comp-card h3 { font-size: 22px; }

  .faq-q-bar {
    padding: 20px 24px;
    padding-right: 56px;
    font-size: 16px;
  }

  .faq-a-box      { padding: 0 24px; }
  .faq-a-box.show { padding: 20px 24px; }

  .student-pill      { font-size: 14px; padding: 10px 20px; }
  .student-pill .mfp-icon { width: 28px; height: 28px; }

  .mfp-email-icons { gap: 12px; }
  .email-icon-item { padding: 8px; }
  .email-icon-item svg { width: 35px; height: 35px; }
}
