:root {
  --dommio-blue: #2D72D2; /* Primary Blue */
  --dommio-accent-cta: #FF6B6B; /* Vibrant Coral for CTAs */
  --dommio-accent-secondary: #1EE0B7; /* Teal Accent */
  --text-color: #1A202C; /* Primary text */
  --text-color-secondary: #4A5568; /* Secondary text */
  --background-color: #FFFFFF; /* Main background */
  --background-light: #F7FAFC; /* Light section background */
  --border-color: #E2E8F0; /* Soft border */
  --footer-background: #1A2B3C; /* Modern dark footer */
  --white: #FFFFFF;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 6px 24px rgba(44, 62, 80, 0.10);
  --shadow-card-hover: 0 12px 32px rgba(44, 62, 80, 0.16);
  --shadow-btn: 0 2px 8px rgba(255, 107, 107, 0.10);
  --shadow-btn-hover: 0 4px 16px rgba(255, 107, 107, 0.18);
}

html, body {
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 0.6em;
  line-height: 1.15;
  color: var(--text-color);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.5em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.4em;
}

.container {
  width: 92%;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 18px;
  padding-right: 18px;
}

a {
  color: var(--dommio-blue);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--dommio-accent-cta);
  opacity: 0.85;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- BUTTONS --- */
.cta-btn, .cta-primary, .why-work-with-us-description .cta-button, .contact-us button[type="submit"] {
  padding: 14px 36px;
  background: var(--dommio-accent-cta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.12rem;
  font-weight: 900;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.5px;
  margin: 18px 0 0 0;
}

.cta-btn:hover, .cta-primary:hover, .why-work-with-us-description .cta-button:hover, .contact-us button[type="submit"]:hover {
  background: #ff4b4b;
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-btn-hover);
}

.cta-button-default, .contact-us button:not([type="submit"]) {
  padding: 12px 28px;
  background: var(--dommio-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: var(--shadow-btn);
}

.cta-button-default:hover, .contact-us button:not([type="submit"]):hover {
  background: #2056a8;
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-btn-hover);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  transition: background 0.3s, box-shadow 0.3s;
  padding: 18px 0 14px 0;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
header .logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 56px;
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--heading-font);
  color: var(--dommio-blue);
  letter-spacing: -1px;
}
header nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
header nav ul li {
  margin-left: 28px;
}
header nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.2s;
}
header nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--dommio-accent-cta);
  border-radius: 2px;
  transition: width 0.3s;
}
header nav ul li a:hover::after, header nav ul li a:focus::after {
  width: 100%;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: var(--dommio-accent-cta);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dommio-blue);
  font-size: 2rem;
  cursor: pointer;
}

/* --- HEADER CTA BUTTON (DESKTOP/LAPTOP) --- */
header .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-left: 28px;
  padding: 0 36px;
  font-size: 1.12rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-btn);
  vertical-align: middle;
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 95vh;
  overflow: hidden;
  background: var(--dommio-blue);
}
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(45,114,210,0.82) 0%, rgba(255,107,107,0.60) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 48px 20px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 0.5em;
  line-height: 1.1;
  text-shadow: 0 6px 32px rgba(44,62,80,0.18), 0 1.5px 0 rgba(45,114,210,0.10);
  animation: heroTitleFadeIn 1.1s cubic-bezier(.4,0,.2,1);
}
.hero-content .hero-accent {
  background: linear-gradient(90deg, #ff6b6b 0%, #1ee0b7 100%);
  color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  font-weight: 900;
  letter-spacing: -1.5px;
  filter: none;
  opacity: 1;
  text-shadow: 0 4px 24px rgba(30,224,183,0.25), 0 2px 8px rgba(255,107,107,0.18), 0 1.5px 0 rgba(45,114,210,0.10);
  border-radius: 8px;
  padding: 0 8px;
  font-size: 1.1em;
  display: inline-block;
  transition: text-shadow 0.2s;
}
.hero-content .hero-desc {
  font-size: 1.15rem;
  color: var(--white);
  margin-top: 0.7em;
  margin-bottom: 0;
  text-shadow: 0 1.5px 6px rgba(44,62,80,0.10);
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', 'Montserrat', 'Open Sans', 'Segoe UI', Arial, sans-serif;
}
.hero-content .hero-icon {
  color: var(--dommio-accent-secondary);
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.7;
}
.hero-content .hero-highlight {
  background: rgba(255,107,107,0.13);
  color: var(--white);
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,107,107,0.08);
  font-family: 'Inter', 'Montserrat', 'Open Sans', 'Segoe UI', Arial, sans-serif;
}
.cta-buttons {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0;
}
.cta-primary, .cta-secondary {
  padding: 12px 32px;
  font-size: 1.08rem;
  font-family: var(--heading-font);
  font-weight: 900;
  border-radius: 14px;
  min-width: 210px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
  margin: 0;
}
.cta-primary {
  background: transparent !important;
  color: var(--white) !important;
  border: 2.5px solid var(--white) !important;
  box-shadow: none !important;
  border-radius: var(--radius-lg) !important;
  font-size: 1.15rem !important;
  font-family: var(--heading-font) !important;
  font-weight: 900 !important;
  padding: 16px 44px !important;
  min-width: 200px !important;
  height: auto !important;
  display: inline-block !important;
  margin: 40px auto 0 auto !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
}
.cta-primary:hover {
  background: rgba(255,255,255,0.10) !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 4px 16px rgba(255,255,255,0.18) !important;
}
.cta-secondary {
  background: var(--white);
  color: var(--dommio-accent-cta);
  border: 2.5px solid var(--dommio-accent-cta);
}
.cta-secondary:hover {
  background: var(--dommio-accent-cta);
  color: var(--white);
  border-color: var(--dommio-accent-cta);
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-btn-hover);
}
@keyframes heroTitleFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSubtitleFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- TABS --- */
.tabs-section {
  padding: 80px 0;
  background: var(--background-light);
  min-height: auto;
  display: block;
}
.tabs {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.tabs .tab {
  display: inline-block;
  padding: 14px 32px;
  margin: 0 6px;
  background: var(--white);
  color: var(--dommio-blue);
  border: 2px solid var(--dommio-blue);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(45,114,210,0.07);
}
.tabs .tab:hover, .tabs .tab.active {
  background: var(--dommio-accent-cta);
  color: var(--white);
  border-color: var(--dommio-accent-cta);
  box-shadow: 0 4px 16px rgba(255,107,107,0.13);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- CARDS/BOXES --- */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.service-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
  border: 2px solid var(--border-color);
  position: relative;
}
.service-box:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--dommio-accent-cta);
  transform: translateY(-6px) scale(1.025);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--dommio-blue);
  margin-bottom: 22px;
  display: block;
  transition: color 0.2s;
}
.service-box:hover .service-icon {
  color: var(--dommio-accent-secondary);
}
.service-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
  color: var(--text-color);
  font-weight: 800;
}
.service-box p {
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.7;
}

/* --- WHY WORK WITH US --- */
.why-work-with-us {
  padding: 100px 0;
  background: var(--background-color);
  border-top: 1.5px solid var(--border-color);
  border-bottom: 1.5px solid var(--border-color);
}
.why-work-with-us-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  gap: 40px;
}
.why-work-with-us-title {
  flex: 1;
}
.dreambig {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-color);
  text-align: left;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}
.highlight {
  color: var(--dommio-accent-cta);
}
.why-work-with-us-description {
  flex: 1.2;
}
.why-work-with-us-description h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dommio-blue);
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.why-work-with-us-description p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-color-secondary);
  margin-bottom: 25px;
}
.why-work-with-us-description .cta-button {
  margin-top: 24px;
  border-radius: var(--radius-md);
}
.services-slider {
  margin-top: 40px;
}
.services-slide {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.service-item {
  flex: 1;
  text-align: center;
  padding: 32px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid var(--border-color);
}
.service-item:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--dommio-accent-secondary);
}
.icon-placeholder {
  width: 70px;
  height: 70px;
  background: rgba(255,107,107,0.13);
  border-radius: 50%;
  margin: 0 auto 22px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.service-item:hover .icon-placeholder {
  background: rgba(30,224,183,0.13);
}
.service-icon-large {
  font-size: 2.1rem;
  color: var(--dommio-accent-cta);
  transition: color 0.2s;
}
.service-item:hover .service-icon-large {
  color: var(--dommio-accent-secondary);
}
.service-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
  color: var(--text-color);
  font-weight: 800;
}
.service-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-color-secondary);
}

/* --- CATEGORIES/INDUSTRIES --- */
.industries {
  padding: 100px 0;
  background: var(--background-light);
  text-align: center;
}
.industries .section-title {
  margin-bottom: 48px;
}
.industries .section-title h2 {
  margin-bottom: 15px;
}
.industries .section-title p {
  font-size: 1.15rem;
  color: var(--text-color-secondary);
  max-width: 700px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 18px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--border-color);
  position: relative;
}
.process-step:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--dommio-accent-cta);
}
.icon-container {
  width: 70px;
  height: 70px;
  background: rgba(255,107,107,0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.process-step:hover .icon-container {
  background: rgba(30,224,183,0.13);
}
.industry-icon {
  font-size: 2.1rem;
  color: var(--dommio-accent-cta);
  transition: color 0.2s;
}
.process-step:hover .industry-icon {
  color: var(--dommio-accent-secondary);
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
  color: var(--text-color);
  font-weight: 800;
}
.process-step p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-color-secondary);
}

/* --- OUR PLATFORM --- */
.our-platform {
  background: var(--background-color);
  padding: 100px 0;
  padding-bottom: 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 15px;
}
.section-header p, .section-title p, .what-we-do-title p, .faq-section > .container > p {
  font-size: 1.22rem;
  color: var(--text-color-secondary);
  max-width: 700px;
  margin: 24px auto 0 auto;
  text-align: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  animation: subtitleFadeIn 0.8s;
}
@keyframes subtitleFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.platform-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-left: 0;
}
.features {
  flex: 1;
}
.feature {
  margin-bottom: 28px;
  position: relative;
  padding-left: 38px;
}
.feature:before {
  content: "\f26a";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.3rem;
  color: var(--dommio-accent-secondary);
}
.feature h3 {
  font-size: 1.08rem;
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 800;
}
.feature p {
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.6;
}
.platform-visual {
  flex: 1.2;
  position: relative;
  margin-bottom: 48px;
}
.platform-visual iframe {
  margin-left: 0 !important;
}
.platform-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(44,62,80,0.10);
  display: block;
}

/* --- CONTACT US --- */
.contact-us {
  background: var(--background-color);
  padding: 100px 0;
  text-align: center;
}
.contact-us h2 {
  margin-bottom: 15px;
}
.contact-us p {
  font-size: 1.15rem;
  color: var(--text-color-secondary);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-us form {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-us input,
.contact-us select,
.contact-us textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1.08rem;
  font-family: var(--body-font);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  color: var(--text-color);
}
.contact-us input:focus,
.contact-us select:focus,
.contact-us textarea:focus {
  border-color: var(--dommio-accent-cta);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,107,107,0.13);
}
.contact-us textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-us button[type="submit"] {
  width: auto;
  min-width: 180px;
  align-self: center;
  margin-top: 10px;
  border-radius: var(--radius-lg);
}
#formResponse {
  margin-top: 25px;
  min-height: 50px;
}
.success-message, .error-message {
  border-radius: var(--radius-md);
  padding: 15px 20px;
  text-align: center;
  font-weight: 700;
}
.success-message {
  color: #1A7F4D;
  background: #e6f9f0;
  border: 1.5px solid #1EE0B7;
}
.error-message {
  color: #B91C1C;
  background: #ffeaea;
  border: 1.5px solid var(--dommio-accent-cta);
}

/* --- FAQ --- */
.faq-section {
  background: var(--background-light);
  padding: 80px 0;
  text-align: center;
}
.faq-section h2 {
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 18px;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44,62,80,0.07);
}
.faq-question {
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--border-color);
  color: var(--text-color);
  text-align: left;
  width: 100%;
  padding: 20px 28px;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: rgba(255,107,107,0.07);
  color: var(--dommio-accent-cta);
}
.faq-question::after {
  content: "\f282";
  font-family: 'bootstrap-icons';
  font-size: 1.1rem;
  transition: transform 0.3s, color 0.2s;
  color: var(--dommio-accent-cta);
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}
.faq-answer {
  background: var(--white);
  margin: 0;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.4s;
  border-radius: 0;
  box-shadow: none;
  display: block;
}
.faq-answer p {
  color: var(--text-color-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding: 20px 0;
  margin: 0;
}

/* --- MODERN, ATTRACTIVE FOOTER --- */
footer {
  background: var(--footer-background);
  color: #e2e8f0;
  padding: 48px 0 20px;
  font-family: var(--body-font);
  border-top: 3px solid var(--dommio-accent-cta);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer-section h3 {
  font-size: 1.08rem;
  color: var(--dommio-accent-cta);
  margin-bottom: 12px;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: -0.5px;
}

.footer-section p,
.footer-section ul li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #e2e8f0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-section .social a {
  display: inline-block;
  margin-right: 12px;
  color: var(--dommio-accent-secondary);
  font-size: 1.4rem;
  border-radius: 50%;
  padding: 6px;
  transition: color 0.2s, background 0.2s;
}

.footer-section .social a:hover {
  color: var(--dommio-accent-cta);
  background: rgba(255,107,107,0.10);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid #22344a;
  font-size: 0.98rem;
  color: #b0b8c1;
}

.footer-bottom a {
  color: var(--dommio-accent-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--dommio-accent-cta);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 0 6px;
  }
  .footer-section .social {
    margin-top: 10px;
  }
  .footer-section .social a {
    margin: 0 7px;
    font-size: 1.2rem;
    padding: 5px;
  }
  .footer-bottom {
    font-size: 0.92rem;
    padding-top: 18px;
    margin-top: 18px;
  }
}

/* --- RESPONSIVE --- */
@media (min-width: 1200px) {
  .container { width: 85%; }
  .process-steps {
    grid-template-columns: repeat(6, minmax(190px, 1fr));
    gap: 28px;
    justify-content: center;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
  .process-step {
    padding: 32px 18px;
    min-width: 0;
  }
  .icon-container {
    width: 54px;
    height: 54px;
  }
  .industry-icon {
    font-size: 1.5rem;
  }
  .process-step h3 {
    font-size: 1rem;
  }
  .process-step p {
    font-size: 0.95rem;
  }
}
@media (max-width: 1199px) and (min-width: 769px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .process-step {
    padding: 28px 14px;
  }
  .icon-container {
    width: 60px;
    height: 60px;
  }
  .industry-icon {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  body { padding-top: 70px; }
  header { padding: 10px 0; }
  header .container { flex-wrap: wrap; position: relative; }
  .mobile-menu-toggle { display: none !important; }
  header .logo { flex-grow: 1; font-size: 1.3rem; }
  header .cta-btn { order: 2; margin-left: 15px; padding: 10px 18px; font-size: 0.98rem; }
  header nav {
    display: none !important;
  }
  .hero { height: 85vh; } 
  .hero-content h1 { font-size: clamp(1.2rem, 6vw, 2rem); margin-bottom: 20px; }
  .hero-content p { font-size: 1rem; padding: 0 15px; margin-bottom: 30px; }
  .hero-content .cta-primary {
    width: 90% !important;
    max-width: 340px !important;
    font-size: 1.08rem !important;
    padding: 16px 0 !important;
    margin: 32px auto 0 auto !important;
    display: block !important;
  }
  .dreambig { font-size: clamp(1.1rem, 4vw, 1.5rem); }
  .service-boxes, .process-steps { grid-template-columns: 1fr; gap: 22px; }
  .services-slide { flex-direction: column; gap: 22px; }
  .service-item { width: 100%; margin-bottom: 15px; }
  .why-work-with-us { padding: 60px 0; }
  .why-work-with-us-header { gap: 20px; margin-bottom: 40px; }
  .dreambig { text-align: center; }
  .why-work-with-us-description { text-align: center; }
  .why-work-with-us-description .cta-button { margin: 20px auto 0; }
  .platform-content {
    flex-direction: column;
    align-items: stretch;
  }
  .platform-visual {
    display: none !important;
    min-height: 0 !important;
    margin: 0 !important;
  }
  .industries, .our-platform, .contact-us { padding: 60px 0; }
  .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-section h3 { margin-bottom: 15px; }
  .footer-section.social { display: flex; justify-content: center; margin-top: 18px; width: 100%; order: 10; }
  .footer-section.social a { margin: 0 10px; }
  .footer-bottom p { font-size: 0.85rem; }
  .tabs .tab { padding: 10px 20px; font-size: 0.98rem; margin: 5px 3px; width: calc(50% - 10px); box-sizing: border-box; }
  .tabs { display: flex; flex-wrap: wrap; justify-content: center; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-step {
    padding: 18px 8px;
  }
  .icon-container {
    width: 48px;
    height: 48px;
  }
  .industry-icon {
    font-size: 1.2rem;
  }
  .section-header p, .section-title p, .what-we-do-title p, .faq-section > .container > p {
    font-size: 1.05rem;
    margin-top: 16px;
    padding: 0;
  }
  .hero-content {
    min-height: 70vh;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .why-work-with-us-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .why-work-with-us-title {
    display: none;
  }
  .tabs .tab, .cta-primary, .cta-btn, .cta-button, .contact-us button[type="submit"] {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 12px auto;
    font-size: 1.08rem;
    padding: 14px 0;
    border-radius: 12px;
    box-sizing: border-box;
    display: block;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
  .cta-primary, .cta-secondary {
    width: 100%;
    min-width: 0;
    height: 56px;
    font-size: 1.08rem;
  }
}
@media (max-width: 480px) {
  .container { width: 98%; }
  h1 { font-size: clamp(1rem, 7vw, 1.5rem); }
  h2 { font-size: clamp(0.9rem, 5vw, 1.2rem); }
  header .logo { font-size: 1rem; }
  .hero-content p { font-size: 0.98rem; padding: 0 10px; }
  .hero-content .cta-primary {
    font-size: 1rem !important;
    padding: 14px 0 !important;
    min-width: 0 !important;
    max-width: 98vw !important;
  }
  .what-we-do-title p, .section-header p, .contact-us p { font-size: 0.98rem; line-height: 1.5; }
  .service-box { padding: 18px; }
  .process-step { padding: 18px 10px; }
  .contact-us input, .contact-us select, .contact-us textarea { padding: 12px 12px; font-size: 0.98rem; }
  .contact-us button[type="submit"] { min-width: 100%; padding: 12px; }
  .faq-question { font-size: 0.98rem; padding: 15px 20px; }
  .faq-answer p { font-size: 0.98rem; line-height: 1.5; }
}
@media print {
  header, .hero video, .hero-overlay, .mobile-menu-toggle, .cta-btn, .cta-button, .contact-us form, footer, .faq-question::after { display: none; }
  body { padding-top: 0; }
  section { padding: 30px 0; }
  .container { width: 100%; max-width: none; padding: 0 1cm; }
  h1, h2, h3, p, li { color: #000 !important; text-shadow: none !important; }
  a { color: #000; text-decoration: underline; }
  .service-box, .process-step { box-shadow: none; border: 1.5px solid #ccc; }
  .service-boxes, .process-steps { display: block; }
  .service-box, .process-step { margin-bottom: 15px; }
}
/** --- SECTION & CARD TITLES --- */
.dreambig, .why-work-with-us-title h1, .why-work-with-us-title .highlight, .service-box h3, .service-item h3, .process-step h3, .industries .section-title h2, .section-header h2, .faq-section h2 {
  color: var(--dommio-blue) !important;
  font-family: var(--heading-font);
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.5px;
}
.why-work-with-us-title .highlight {
  color: var(--dommio-accent-cta) !important;
}
.service-box h3, .service-item h3, .process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
  font-weight: 800;
}

/** --- CARD & ICON CONSISTENCY --- */
.service-box, .service-item, .process-step {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px 24px;
  margin-bottom: 24px;
  background: var(--white);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.service-box:hover, .service-item:hover, .process-step:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--dommio-accent-cta);
  transform: translateY(-6px) scale(1.025);
}
.icon-placeholder, .icon-container {
  width: 70px;
  height: 70px;
  background: rgba(255,107,107,0.13);
  border-radius: 50%;
  margin: 0 auto 22px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.service-item:hover .icon-placeholder, .process-step:hover .icon-container {
  background: rgba(30,224,183,0.13);
}
.service-icon-large, .industry-icon, .service-icon {
  color: var(--dommio-accent-cta);
  font-size: 2.1rem;
  transition: color 0.2s;
}
.service-item:hover .service-icon-large, .process-step:hover .industry-icon, .service-box:hover .service-icon {
  color: var(--dommio-accent-secondary);
}

/** --- BUTTON CONSISTENCY --- */
.cta-btn, .cta-primary, .why-work-with-us-description .cta-button, .contact-us button[type="submit"] {
  padding: 14px 36px;
  background: var(--dommio-accent-cta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.12rem;
  font-weight: 900;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.5px;
  margin: 18px 0 0 0;
}
.cta-btn:hover, .cta-primary:hover, .why-work-with-us-description .cta-button:hover, .contact-us button[type="submit"]:hover {
  background: #ff4b4b;
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-btn-hover);
}

/** --- SPACING & ALIGNMENT --- */
.why-work-with-us-header, .industries .section-title, .our-platform .section-header, .faq-section .container {
  margin-bottom: 48px;
}
.service-boxes, .services-slide, .process-steps {
  margin-top: 32px;
  gap: 32px;
}
.why-work-with-us-description .cta-button {
  margin-top: 24px;
}

/** --- REMOVE ALL-CAPS FROM CARD TITLES --- */
.service-item h3, .process-step h3 {
  text-transform: none;
  letter-spacing: 0;
}

/** --- CONSISTENT VERTICAL SPACING --- */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .service-box, .service-item, .process-step {
    padding: 22px 10px;
  }
}

/* --- HERO HEIGHT ADJUSTMENT FOR DESKTOP/LAPTOP --- */
@media (min-width: 769px) {
  .hero {
    position: relative;
    height: 100vh;
    min-height: 520px;
    max-height: 900px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    box-sizing: border-box;
  }
  .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(45,114,210,0) 0%, rgba(255,107,107,0.10) 80%, #fff 100%);
  }
  .hero-content {
    position: relative;
    z-index: 4;
  }
}

section {
  position: relative;
  overflow: hidden;
}
.section-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
  filter: blur(2px);
  transition: opacity 0.3s;
}
/* Circle */
.section-decor.circle {
  border-radius: 50%;
}
/* Oval */
.section-decor.oval {
  border-radius: 50% / 40%;
}
/* Triangle */
.section-decor.triangle {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--dommio-accent-secondary);
  background: none;
  opacity: 0.10;
  filter: none;
}
/* Squiggle (SVG background) */
.section-decor.squiggle {
  width: 120px; height: 40px;
  background: url('data:image/svg+xml;utf8,<svg width="120" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0,20 Q30,0 60,20 T120,20" stroke="%23FF6B6B" stroke-width="6" fill="none" opacity="0.18"/></svg>') no-repeat center/contain;
  border-radius: 0;
  opacity: 0.18;
  filter: none;
}
/* Placement for each section, avoiding content */
.our-platform .decor-1 { width: 180px; height: 180px; top: 40px; left: -60px; background: radial-gradient(circle at 40% 60%, var(--dommio-blue) 60%, transparent 100%); border-radius: 50%; }
.our-platform .decor-1b { width: 90px; height: 60px; bottom: 30px; right: 40px; background: var(--dommio-accent-secondary); border-radius: 50% / 40%; opacity: 0.09; }
.tabs-section .decor-2 { width: 120px; height: 120px; bottom: 30px; right: -40px; background: radial-gradient(circle at 60% 40%, var(--dommio-accent-cta) 60%, transparent 100%); border-radius: 50%; }
.tabs-section .decor-2b { width: 80px; height: 40px; top: 30px; left: 30px; background: var(--dommio-blue); border-radius: 50% / 40%; opacity: 0.08; }
.tabs-section .decor-2c { top: 80px; right: 120px; }
.tabs-section .decor-2c.squiggle { }
.why-work-with-us .decor-3 {
  width: 140px;
  height: 140px;
  top: 10px;
  left: auto;
  right: 10px;
  background: radial-gradient(circle at 50% 50%, var(--dommio-accent-secondary) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.13;
}
.why-work-with-us .decor-3b { width: 0; height: 0; top: 30px; left: 40px; }
.why-work-with-us .decor-3b.triangle { }
.industries .decor-4 { width: 100px; height: 100px; top: 10%; right: 10%; background: radial-gradient(circle at 50% 50%, var(--dommio-blue) 60%, transparent 100%); border-radius: 50%; }
.industries .decor-4b { width: 120px; height: 40px; bottom: 40px; left: 60px; }
.industries .decor-4b.squiggle { }
.contact-us .decor-5 { width: 160px; height: 160px; bottom: 0; left: 0; background: radial-gradient(circle at 60% 40%, var(--dommio-accent-cta) 60%, transparent 100%); border-radius: 50%; }
.contact-us .decor-5b { width: 60px; height: 100px; top: 30px; right: 40px; background: var(--dommio-accent-secondary); border-radius: 50% / 40%; opacity: 0.09; }

@media (max-width: 768px) {
  header .cta-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .container, .contact-us .container {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .contact-us form {
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }
}

/* --- CATEGORY SLIDER (Skillshare style) --- */
.category-slider-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--background-light);
  padding: 0;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.category-slider-wrapper {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin: 0;
  padding: 0;
}
.category-slider {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.category-slide {
  min-width: 340px;
  max-width: 420px;
  height: 340px;
  flex: 0 0 38vw;
  margin: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  scroll-snap-align: start;
}
.category-slide:first-child {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
.category-slide:last-child {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.category-slide:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 48px rgba(44,62,80,0.18);
}
.category-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(30,32,48,0.38) 0%, rgba(45,114,210,0.32) 100%);
  border-radius: inherit;
  z-index: 1;
}
.category-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 32px 28px 28px 28px;
  width: 100%;
  text-align: left;
}
.category-slide-content h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 24px rgba(44,62,80,0.18), 0 1.5px 0 rgba(45,114,210,0.10);
}
.category-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(45,114,210,0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 2px 12px rgba(44,62,80,0.13);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.category-slider-arrow.left { left: 12px; }
.category-slider-arrow.right { right: 12px; }
.category-slider-arrow:hover {
  background: var(--dommio-accent-cta);
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 900px) {
  .category-slide {
    min-width: 260px;
    max-width: 320px;
    height: 220px;
    flex: 0 0 60vw;
    margin: 0;
    border-radius: 0;
  }
  .category-slide:first-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
  }
  .category-slide:last-child {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
  }
  .category-slide-content h2 {
    font-size: 1.2rem;
  }
  .category-slider {
    margin: 0 18px;
  }
  .category-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .category-slider-section {
    margin-top: 32px;
  }
  .category-slider {
    gap: 8px;
  }
  .category-slider-pause-inside {
    display: none !important;
  }
  .category-slide-content h2 {
    white-space: normal;
    word-break: break-word;
    font-size: 0.98rem;
  }
}
/* Hide arrows on mobile, show only swipe */
@media (max-width: 700px) {
  .category-slider-arrow { display: none; }
}
/* Hide scroll bar for slider */
.category-slider {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-slider::-webkit-scrollbar {
  display: none;
}

/* Subtle controls below the slider */
.category-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 0;
}
.category-slider-controls .category-slider-arrow,
.category-slider-controls .category-slider-pause {
  background: rgba(45,114,210,0.10);
  color: var(--dommio-blue);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: background 0.18s, color 0.18s, opacity 0.18s, box-shadow 0.18s;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.category-slider-controls .category-slider-arrow:hover,
.category-slider-controls .category-slider-arrow:focus,
.category-slider-controls .category-slider-pause:hover,
.category-slider-controls .category-slider-pause:focus {
  background: rgba(45,114,210,0.18);
  color: var(--dommio-accent-cta);
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.category-slider-controls .category-slider-arrow {
  font-size: 1.3rem;
}
.category-slider-controls .category-slider-pause {
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .category-slider-controls {
    gap: 10px;
    margin-top: 10px;
  }
  .category-slider-controls .category-slider-arrow,
  .category-slider-controls .category-slider-pause {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

/* Pause button inside the slider, bottom right */
.category-slider-pause-inside {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  background: rgba(45,114,210,0.10);
  color: var(--dommio-blue);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: background 0.18s, color 0.18s, opacity 0.18s, box-shadow 0.18s;
  box-shadow: none;
}
.category-slider:hover .category-slider-pause-inside,
.category-slider:focus-within .category-slider-pause-inside {
  opacity: 0.85;
  pointer-events: auto;
}
.category-slider-pause-inside:hover,
.category-slider-pause-inside:focus {
  background: rgba(45,114,210,0.18);
  color: var(--dommio-accent-cta);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

/* --- STUDENT MARKET SECTION --- */
.student-market-section {
  background: linear-gradient(120deg, #f7fafc 60%, #e3f0ff 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.student-market-section .container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
}
.student-market-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.student-market-facts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 220px;
  align-items: flex-end;
}
.student-market-facts-right {
  align-items: flex-start;
}
.student-market-fact {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  width: 290px;
  height: 160px;
  text-align: center;
  margin-bottom: 0;
  border: 2px solid var(--border-color);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.student-market-fact:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--dommio-accent-cta);
  transform: translateY(-6px) scale(1.025);
  background: linear-gradient(90deg, #fff 60%, #e3f0ff 100%);
}
.fact-number {
  font-size: 2.6rem;
  font-family: var(--heading-font);
  font-weight: 900;
  color: var(--dommio-accent-cta);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -1px;
  text-shadow: 0 2px 16px rgba(255,107,107,0.10), 0 1.5px 0 rgba(45,114,210,0.10);
}
.fact-label {
  font-size: 1.08rem;
  color: var(--text-color-secondary);
  font-weight: 700;
  display: block;
}
.student-market-lottie {
  flex: 1.2 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 220px;
  max-width: 340px;
  max-height: 340px;
  margin: 0 18px;
  background: none;
  position: relative;
}
.lottie-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  max-width: 90vw;
  max-height: 90vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30,224,183,0.18) 0%, rgba(45,114,210,0.10) 60%, transparent 100%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: lottieGlowPulse 3.5s infinite alternate;
}
@keyframes lottieGlowPulse {
  0% { opacity: 0.7; filter: blur(18px); }
  100% { opacity: 1; filter: blur(32px); }
}
.student-lottie-animation {
  width: 100%;
  height: 420px;
  max-width: 340px;
  margin: 0 auto;
  background: none;
  position: relative;
  z-index: 1;
}
.section-decor.decor-student-market {
  width: 180px;
  height: 180px;
  top: 30px;
  left: -60px;
  background: radial-gradient(circle at 40% 60%, var(--dommio-accent-secondary) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.13;
  animation: floatDecor1 7s ease-in-out infinite alternate;
}
@keyframes floatDecor1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.08); }
}
.section-decor.decor-student-market2 {
  width: 120px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: var(--dommio-accent-secondary);
  border-radius: 50% / 40%;
  opacity: 0.09;
  animation: floatDecor2 6s ease-in-out infinite alternate;
}
@keyframes floatDecor2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.12); }
}
.section-decor.decor-student-market3 {
  width: 120px;
  height: 40px;
  top: 80px;
  right: 120px;
  background: url('data:image/svg+xml;utf8,<svg width="120" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0,20 Q30,0 60,20 T120,20" stroke="%23FF6B6B" stroke-width="6" fill="none" opacity="0.18"/></svg>') no-repeat center/contain;
  border-radius: 0;
  opacity: 0.18;
  filter: none;
  animation: floatDecor3 8s ease-in-out infinite alternate;
}
@keyframes floatDecor3 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(18px) rotate(2deg); }
}
@media (max-width: 1100px) {
  .student-market-content {
    gap: 24px;
    max-width: 98vw;
  }
  .student-market-lottie, .lottie-glow {
    max-width: 220px;
    max-height: 220px;
    min-width: 120px;
    min-height: 120px;
  }
  .student-lottie-animation {
    height: 180px;
    max-width: 220px;
  }
}
@media (max-width: 900px) {
  .student-market-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .student-market-facts {
    flex-direction: row;
    gap: 18px;
    justify-content: center;
    align-items: flex-end;
  }
  .student-market-facts-right {
    align-items: flex-start;
  }
  .student-market-lottie, .lottie-glow {
    min-width: 140px;
    min-height: 100px;
    max-width: 220px;
    max-height: 220px;
  }
  .student-lottie-animation {
    height: 180px;
    max-width: 220px;
  }
}
@media (max-width: 600px) {
  .student-market-section {
    padding: 60px 8px 40px 8px;
  }
  .student-market-content {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .student-market-facts,
  .student-market-facts-right,
  .student-market-facts-left {
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
    gap: 0;
  }
  .student-market-fact {
    margin-bottom: 12px;
    width: 100%;
    max-width: 400px;
    word-break: break-word;
    text-align: center;
  }
  .student-market-lottie,
  .lottie-glow {
    display: none !important;
  }
  .fact-number {
    font-size: 1.5rem;
    white-space: normal;
    word-break: break-word;
  }
  .fact-label {
    font-size: 0.95rem;
    white-space: normal;
    word-break: break-word;
  }
}
