:root {
  --primary: #2e86de;
  --accent: #00c9a7;
  --text: #000000;
  --bg: #ffffff;
  --muted: #f5f7fa;
  --hover: #0e5fd8;
  --radius: 12px;
  --max-width: 1100px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video {
  max-width: 100%;
  display: block;
}

nav {
  position: sticky;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: block;
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: rgba(31, 31, 31, 0.7);
  margin-top: 2px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #c139ff);
  opacity: 0.9;
  z-index: 1;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 12px;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.hero-image {
  overflow: hidden;
  border-radius: 12px;
  max-width: 500px;
}

.hero-image .slides {
  display: flex;
  animation: slideHero 9s infinite;
}

@keyframes slideHero {
  0% {
    transform: translateX(0%);
  }
  33% {
    transform: translateX(0%);
  }
  38% {
    transform: translateX(-100%);
  }
  66% {
    transform: translateX(-100%);
  }
  71% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

.mockup {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-radius: 12px;
  padding: 8px;
}

.mock-top {
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 8px;
  margin-bottom: 12px;
}

.mock-body {
  display: flex;
  gap: 10px;
}

.mock-left {
  flex: 1;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #eef7ff);
}

.mock-right {
  width: 110px;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f3fff9);
}

.section {
  padding: 28px 0;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(31, 31, 31, 0.04);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  text-align: center;
}

.projects-grid.large {
  grid-template-columns: 1fr;
}

.large-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.large-thumb {
  width: 280px;
  height: 150px;
  border-radius: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  font-size: 14px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-footer h4,
.site-footer h5 {
  color: white;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 760px) {
  .projects-grid.large {
    grid-template-columns: 1fr;
  }
}

.why-list i {
  font-size: 1.2rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  border-radius: 50%;
  padding: 8px;
}

.portfolio-section {
  padding: 60px 20px;
}

.section-title .highlight {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
}

.project-info {
  padding: 15px;
}

.project-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a60fe;
  margin-bottom: 6px;
}

.project-info p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.contact-info p,
.contact-info a {
  font-family: "Inter", sans-serif;
  color: #555;
  font-size: 0.95rem;
}

.btn.large {
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.footer-tagline {
  color: #888;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-column h4,
.footer-column h5 {
  margin-bottom: 10px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.mission,
.team,
.values {
  margin-top: 50px;
  text-align: center;
}

.mission h2,
.team h2,
.values h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.gradient-bg {
  background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
}

.thumb {
  height: 140px;
  border-radius: 10px;
  background: #f0f0f0;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.page-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #c139ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #1a60fe;
}

.text {
  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.container.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

.container.section h1,
.container.section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.values ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin: auto;
}

.values ul li {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-info .text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
}

.contact-info img {
  max-width: 120px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.contact-info h3,
.contact-info h4 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 24px;
}

.hero-cta .btn.primary {
  color: #fff;
  font-weight: 600;
}

.hero-cta .btn.outline {
  background: transparent;
  font-weight: 600;
}

.hero-cta .btn.outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero-features li:hover {
  background: rgba(26, 96, 254, 0.15);
  transform: translateY(-2px);
}

.hero-features li::before {
  content: "✔";
  color: #1a60fe;
  font-weight: bold;
  margin-right: 10px;
}

.hero-features li span {
  margin-right: 8px;
  font-size: 1.2em;
}

.testimonials-preview {
  background: white;
  border-radius: 12px;
  padding: 3rem 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
}

.testimonials-preview h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #212529;
  text-align: center;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #3a86ff;
  font-style: normal;
  font-weight: 600;
  text-align: right;
}

@media (min-width: 576px) {
  .testimonials-preview {
    padding: 3.5rem 0;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial p {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .testimonials-preview {
    padding: 5rem 0;
  }

  .testimonial p {
    font-size: 1.15rem;
  }

  .testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.testimonial {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #812cea;
  font-style: italic;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeIn 0.6s ease forwards;
  color: black;
}

.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}

.why {
  padding: 3rem 1rem;
  max-width: 100%;
  overflow: hidden;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  color: #222;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.15rem;
  max-width: 1200px;
}

.why-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
  width: 100%;
}

.why-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.checkmark {
  color: #3a86ff;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (min-width: 640px) {
  .why {
    padding: 4rem 2rem;
  }

  .why-list li {
    font-size: 1.15rem;
  }
}

.why-content::after {
  height: 1px;
  background-color: #eee;
  margin: 1.5rem 0;
}

.icon {
  font-size: 28px;
  background: linear-gradient(135deg, #4facfe, #8e44ad);
  color: #fff;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  line-height: 1;
  margin: 0 auto 15px;
}

.btn.primary,
.btn.outline {
  font-size: larger;
}

.about-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 40px;
  text-align: center;
  margin: 3rem 0;
  border-left: 4px solid #1a60fe;
}

.mission h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #0b0f32;
}

.mission p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.team {
  margin: 4rem 0;
}

.team h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0b0f32;
}

.values {
  margin: 4rem 0;
}

.values h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0b0f32;
}

.value-list {
  list-style: none;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.value-list li {
  margin-bottom: 8px;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.value-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

.plans-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.plan-category:first-child {
  margin-top: 2rem;
}

.category-title i {
  color: #1a60fe;
  font-size: 1.5rem;
}

.faq-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0b0f32;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0b0f32;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-inner .btn.primary.large {
  background: white;
  color: #1a60fe;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-inner .btn.primary.large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.plan-card:nth-child(1) {
  animation-delay: 0.1s;
}

.plan-card:nth-child(2) {
  animation-delay: 0.2s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.3s;
}

.plan-card:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.services-page {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header .lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  font-size: 3rem;
  color: #1a60fe;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  color: #812cea;
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
}

.service-card ul {
  padding-left: 20px;
  font-size: 0.9rem;
  margin-top: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li:hover {
  color: #1a60fe;
  transform: translateX(5px);
}

.service-card ul li::before {
  content: "•";
  color: #1a60fe;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.service-card:hover ul li {
  border-bottom-color: #e8f0fe;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card:nth-child(7) {
  animation-delay: 0.7s;
}

.service-card:nth-child(8) {
  animation-delay: 0.8s;
}

.service-card:nth-child(9) {
  animation-delay: 0.9s;
}

.service-card:nth-child(10) {
  animation-delay: 1s;
}

.service-card:nth-child(11) {
  animation-delay: 1.1s;
}

.service-card:nth-child(12) {
  animation-delay: 1.2s;
}

.service-card:nth-child(13) {
  animation-delay: 1.3s;
}

.service-card:nth-child(14) {
  animation-delay: 1.4s;
}

.service-card:nth-child(15) {
  animation-delay: 1.5s;
}

.service-card:nth-child(16) {
  animation-delay: 1.6s;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.service-card:hover::after {
  opacity: 0.02;
}

.service-card:focus-within {
  outline: 2px solid #1a60fe;
  outline-offset: 2px;
}

.portfolio-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project {
  background: white;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.thumb::before {
  content: "Thumbnail";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ccc;
  font-size: 1rem;
  z-index: 0;
  display: none;
}

.thumb img:not([src])::before,
.thumb img[src=""]::before {
  display: block;
}

.project:hover .thumb img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.9) 0%,
    rgba(193, 57, 255, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.project:hover .overlay {
  opacity: 1;
}

.overlay .btn.primary {
  background: white;
  color: #1a60fe;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project:hover .overlay .btn.primary {
  transform: translateY(0);
}

.overlay .btn.primary:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project > h4,
.project > p {
  padding: 1rem 1.5rem;
  margin: 0;
}

.project h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 1rem;
  font-size: 1.4rem;
  color: #0b0f32;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.project p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0 1rem 1.2rem;
  line-height: 1.6;
  padding-top: 0;
  margin-top: -0.5rem;
  padding-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

.nav-link:hover,
.nav-link.cta {
  color: #007bff;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1rem;
}

.lead {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: "Poppins", sans-serif;
}

.hero-cta .btn {
  margin-right: 1rem;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  min-width: 180px;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.btn.outline {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.outline:hover {
  background: #007bff;
  color: #fff;
  border-color: transparent;
}

.hero-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  background: rgba(26, 96, 254, 0.08);
  padding: 10px 14px;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    background 0.3s ease;
  margin: 0.5rem 0;
  color: #444;
  font-size: 0.95rem;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-sub {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 5px solid transparent;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-top: 5px solid #c139ff;
  border-color: #f0f0f0;
}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
  margin: 1rem 0 0.5rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: #000 !important;
  line-height: 1.6;
  text-align: center;
  font-family: "Inter", sans-serif;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  margin-bottom: 5px;
  color: #555;
  margin: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

.stat-label {
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.testimonial-content .stars {
  color: #ffb400;
  font-size: 1.2rem;
}

.footer-links a {
  color: #ddd;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.hero-slider .slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slider .slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.hero-slider img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.slider-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: #007bff;
}

.brand .logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand .logo:hover {
  transform: scale(1.05);
}

.nav-link:hover {
  color: #007bff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #1f1f1f;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1f1f1f;
}

h1 {
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-gap: 1.5rem;
}

.nav-link.cta:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.logo {
  width: 200px;
  object-fit: contain;
  border-radius: var(--radius, 12px);
  height: 40px;
}

.auth-section {
  max-width: 400px;
  margin: 60px auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius, 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.auth-section h1 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #333;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form label {
  text-align: left;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #444;
}

.auth-form input {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.auth-form input:focus {
  border-color: var(--primary, #2e86de);
  box-shadow: 0 0 0 2px rgba(46, 134, 222, 0.15);
}

.auth-form button {
  background: linear-gradient(90deg, var(--primary, #2e86de));
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}

.auth-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 134, 222, 0.3);
}

.auth-section p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.auth-section p a {
  color: var(--primary, #2e86de);
  text-decoration: none;
  font-weight: 500;
}

.auth-section p a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-grid {
  display: flex;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.why-feature {
  display: flex;
  gap: 15px;
  align-items: start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-feature i {
  font-size: 1.8rem;
  color: #2e86de;
  background: rgba(46, 134, 222, 0.1);
  padding: 12px;
  border-radius: 10px;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0b0f32;
  font-weight: 600;
}

.why-feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.btn.primary {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  border: 0;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: #0056b3;
}

.profile-section {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.profile-section:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
  font-size: 1.2rem;
}

.profile-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #0b0f32;
}

.profile-email {
  font-size: 0.9rem;
  color: #666;
}

.profile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-menu li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.profile-menu li:last-child {
  border-bottom: none;
}

.profile-menu a {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.profile-menu a:hover {
  color: #1a60fe;
}

.profile-menu i {
  font-size: 1.1rem;
  width: 20px;
}

.logout-btn {
  color: #e74c3c !important;
  font-weight: 500;
}

.logout-btn:hover {
  color: #c0392b !important;
}

.contact-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease-in-out;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  font-family: "Poppins", sans-serif;
  color: #0b0f32;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #f8f9ff;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1a60fe;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 96, 254, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

#formStatus .success {
  color: #0a8;
  font-weight: 500;
  background: rgba(0, 170, 136, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 4px solid #0a8;
}

#formStatus .error {
  color: #f33;
  font-weight: 500;
  background: rgba(255, 51, 51, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 4px solid #f33;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a60fe, #c139ff, #812cea);
  background-size: 300% 300%;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Poppins", sans-serif;
}

.contact-form button:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 96, 254, 0.3);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-info {
  background-color: #f5f7fa;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #0b0f32, #13193f);
  color: white;
  animation: slideUp 1s ease-in-out;
  backdrop-filter: blur(12px);
  max-width: 350px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.8rem;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  border-radius: 3px;
}

.contact-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin: 2rem 0 1rem;
  color: #fff;
}

.contact-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
  display: block;
  animation: popIn 0.8s ease-in-out;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  margin: 0 0.4rem;
  font-size: 1.3rem;
  color: white;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  box-shadow: 0 5px 15px rgba(193, 57, 255, 0.4);
}

.footer-section p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #c139ff;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 8px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    position: static;
    order: -1;
  }
}

.nav-link.cta {
  background: linear-gradient(90deg, #1a60fe, #c139ff);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  border: 0;
}

.portfolio-page {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: #ffffff;
}

.portfolio-page .page {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 50%, #812cea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #5a6874;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
  border-color: rgba(26, 96, 254, 0.15);
}

.project-card:hover .image-wrapper img {
  transform: scale(1.02);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-link:hover {
  background: linear-gradient(105deg, #1a60fe, #c139ff);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(26, 96, 254, 0.4);
}

.tech-badge span:first-child {
  background: linear-gradient(95deg, #1a60fe, #4b7df5);
  box-shadow: 0 2px 6px rgba(26, 96, 254, 0.3);
}

.project-card:hover .project-details h4 {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-meta i {
  color: #1a60fe;
  font-size: 0.7rem;
}

@media (max-width: 820px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .portfolio-page {
    padding: 2rem 1.2rem;
  }

  .portfolio-page .page {
    font-size: 2.3rem;
  }

  .portfolio-page .lead {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .image-wrapper img {
    min-height: 200px;
  }

  .project-details {
    padding: 1.2rem;
  }

  .project-details h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 580px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .portfolio-page {
    padding: 1.5rem 1rem;
  }

  .project-link {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
  }

  .tech-badge span {
    font-size: 0.65rem;
    padding: 0.2rem 0.7rem;
  }

  .project-meta span {
    font-size: 0.7rem;
  }

  .image-wrapper img {
    min-height: 180px;
    object-fit: contain;
  }
}

.project-card:nth-child(1) {
  animation-delay: 0.05s;
}

.project-card:nth-child(2) {
  animation-delay: 0.1s;
}

.project-card:nth-child(3) {
  animation-delay: 0.15s;
}

.project-card:nth-child(4) {
  animation-delay: 0.2s;
}

.project-card:nth-child(5) {
  animation-delay: 0.25s;
}

.project-card:nth-child(6) {
  animation-delay: 0.3s;
}

.portfolio-page .container.section {
  padding: 0;
  max-width: 100%;
}

.project-media {
  position: relative;
  overflow: visible;
  background: #f5f7fc;
  max-height: none;
}

.plan-cta .btn {
  margin-top: 8px;
}

.terms-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-page .lead {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a60fe;
  margin: 1.5rem 0 0.8rem;
}

.terms-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.highlight-box p {
  margin: 0;
  font-weight: 500;
  color: #0b0f32;
}

.refund-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.refund-page .lead {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.refund-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.refund-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a60fe;
  margin: 1.5rem 0 0.8rem;
}

.refund-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 0.5rem;
}

.eligibility-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.email-template .email-line {
  margin-bottom: 0.5rem;
}

.email-template .highlight {
  color: #c139ff;
}

.privacy-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated-header {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.last-updated-header strong {
  color: #1a60fe;
}

.privacy-page .lead {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 0.5rem;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cookie-info {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.cookie-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0b0f32;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-type h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a60fe;
}

.contact-item a:hover {
  color: #c139ff;
  text-shadow: 0 0 8px rgba(193, 57, 255, 0.5);
  opacity: 0.9;
  text-decoration: underline;
}

.faq-item-acc {
  background: white;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid #eef2f8;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b0f32;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8faff;
}

.faq-question .faq-icon {
  font-size: 1rem;
  color: #1a60fe;
  transition: transform 0.3s;
}

.faq-item-acc.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fefefe;
  color: #5a6874;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item-acc.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 300px;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(26, 96, 254, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(193, 57, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testimonials-slider-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card-inner {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  position: relative;
  border: 1px solid rgba(26, 96, 254, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover .testimonial-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 96, 254, 0.12);
  border-color: rgba(26, 96, 254, 0.15);
}

.testimonial-card.featured .testimonial-card-inner {
  background: linear-gradient(135deg, #0b0f32 0%, #13193f 100%);
  border: none;
}

.testimonial-card.featured .stars i,
.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info h4,
.testimonial-card.featured .author-info p {
  color: white;
}

.testimonial-card.featured .quote-icon i {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-card.featured .author-info p {
  color: rgba(255, 255, 255, 0.7);
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon i {
  font-size: 2.5rem;
  color: rgba(26, 96, 254, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon i {
  color: rgba(26, 96, 254, 0.25);
  transform: scale(1.05);
}

.stars {
  margin-bottom: 1.25rem;
}

.stars i {
  color: #ffb400;
  font-size: 0.9rem;
  margin-right: 2px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar i {
  font-size: 2.5rem;
  color: #1a60fe;
  opacity: 0.8;
}

.testimonial-card.featured .author-avatar i {
  color: white;
  opacity: 0.9;
}

.author-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  color: #0b0f32;
}

.author-info p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #1a60fe;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav:hover {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  border-color: transparent;
  color: white;
  transform: scale(1.05);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1a60fe, #c139ff);
}

.testimonial-dots .dot:hover {
  background: #1a60fe;
}

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  perspective: 1000px;
  animation: testimonialFadeIn 0.6s ease forwards;
  opacity: 0;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-icon i {
    font-size: 2rem;
  }

  .testimonial-controls {
    display: none;
  }
}

#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a60fe, #c139ff);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  bottom: -180px;
  left: -120px;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255);
  border-radius: 50px;
  padding: 6px 18px;
  color: rgba(255, 255, 255);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.about-hero h1 span {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero .hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.about-page {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem 5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 96, 254, 0.07);
  border: 1px solid rgba(26, 96, 254, 0.15);
  border-radius: 50px;
  padding: 5px 16px;
  color: #1a60fe;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0b0f32;
  margin: 0 0 10px;
}

.section-head p {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.mission-section {
  margin: 64px 0 0;
}

.mission-box {
  background: linear-gradient(135deg, #f0f5ff, #f9f0ff);
  border-radius: 22px;
  padding: 48px 52px;
  border-left: 6px solid #1a60fe;
  position: relative;
  overflow: hidden;
}

.mission-box::after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  color: rgba(26, 96, 254, 0.05);
  pointer-events: none;
}

.mission-box h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #0b0f32;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-box h2 i {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mission-box p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-width: 720px;
}

.team-section {
  margin: 64px 0 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 2rem;
  margin-bottom: 40px;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-top: 4px solid transparent;
  border: 1.5px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a60fe, #c139ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(26, 96, 254, 0.12);
  border-top: 4px solid #1a60fe;
  border-color: #d0d8ff;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
  margin: 0 auto 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(26, 96, 254, 0.3);
}

.team-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #0b0f32;
  margin: 0 0 8px;
}

.team-card .role {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.08),
    rgba(193, 57, 255, 0.08)
  );
  color: #1a60fe;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.team-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

.team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.team-card .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f6ff;
  color: #1a60fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.team-card .social-links a:hover {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  transform: translateY(-2px);
}

.values-section {
  margin: 64px 0 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #f0f0f0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 96, 254, 0.1);
  border-color: #d0d8ff;
}

.value-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f5ff, #f5f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.25s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
}

.value-icon i {
  color: #1a60fe;
  transition: color 0.25s ease;
}

.value-card:hover .value-icon i {
  color: #fff;
}

.value-body h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b0f32;
  margin: 0 0 5px;
}

.value-body p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

.about-cta {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 50%, #c139ff 100%);
  border-radius: 22px;
  padding: 60px 32px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #1a60fe;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  bottom: -160px;
  right: -80px;
  animation: floatC 9s ease-in-out infinite;
}

@keyframes floatC {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.contact-hero h1 span {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero .hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-contact-chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 8px 20px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-chip:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-chip i {
  font-size: 0.95rem;
}

.contact-page {
  text-align: left;
  animation: fadeIn 0.8s ease-in-out;
  padding: 56px 1.2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #f0f0f0;
}

.form-card .form-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b0f32;
  margin: 0 0 6px;
}

.form-card .form-sub {
  color: #888;
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  margin-bottom: 18px;
}

.field-group label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0b0f32;
  margin-bottom: 7px;
}

.field-group label .req {
  color: #ef4444;
  margin-left: 2px;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  color: #0b0f32;
  background: #f8faff;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  box-sizing: border-box;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: #1a60fe;
  box-shadow: 0 0 0 3px rgba(26, 96, 254, 0.1);
  background: #fff;
}

.field-group input.error,
.field-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-group .field-error {
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 5px;
  display: none;
}

.field-group.has-error .field-error {
  display: block;
}

.field-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
  pointer-events: none;
}

.input-wrap input,
.input-wrap select {
  padding-left: 40px;
}

.submit-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    opacity 0.25s;
  margin-top: 8px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 96, 254, 0.35);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#formStatus {
  margin: 14px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
}

.status-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf6;
  border: 1px solid rgba(0, 188, 107, 0.25);
  border-left: 4px solid #00bc6b;
  border-radius: 10px;
  padding: 14px 16px;
  color: #065f46;
  font-size: 0.92rem;
  font-weight: 500;
}

.status-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-left: 4px solid #ef4444;
  border-radius: 10px;
  padding: 14px 16px;
  color: #991b1b;
  font-size: 0.92rem;
  font-weight: 500;
}

.status-success i {
  color: #00bc6b;
  font-size: 1.1rem;
}

.status-error i {
  color: #ef4444;
  font-size: 1.1rem;
}

.wa-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.07),
    rgba(7, 94, 84, 0.05)
  );
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: #065f46;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s;
}

.wa-alt:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.14),
    rgba(7, 94, 84, 0.1)
  );
}

.wa-alt i {
  color: #25d366;
  font-size: 1.2rem;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #f0f0f0;
}

.info-card .logo-wrap {
  margin-bottom: 18px;
}

.info-card img {
  max-width: 130px;
}

.info-card .tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  color: #888;
  margin: 6px 0 20px;
  font-style: italic;
}

.info-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0b0f32;
  margin: 0 0 14px;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f8faff;
  border-radius: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}

.contact-item-row:hover {
  background: #eef2ff;
  transform: translateX(3px);
}

.contact-item-row .ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-item-row .ci-body {
  min-width: 0;
}

.contact-item-row .ci-label {
  font-size: 0.72rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.contact-item-row .ci-value {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0b0f32;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f4f6ff;
  color: #1a60fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}

.social-btn:hover {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  transform: translateY(-3px);
}

.response-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0fdf6, #ecfdf5);
  border: 1px solid rgba(0, 188, 107, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
}

.response-badge i {
  color: #00bc6b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.response-badge .rb-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #065f46;
  display: block;
}

.response-badge .rb-sub {
  font-size: 0.78rem;
  color: #059669;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
  animation: fadeInUp 0.6s ease forwards;
  border: 1.5px solid #f0f0f0;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item.open {
  border-color: rgba(26, 96, 254, 0.2);
  box-shadow: 0 6px 20px rgba(26, 96, 254, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b0f32;
  user-select: none;
  gap: 12px;
}

.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f4f6ff;
  color: #1a60fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    background 0.25s,
    transform 0.25s,
    color 0.25s;
}

.faq-item.open .faq-q .faq-icon {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
}

.faq-a-inner {
  padding: 0 22px 18px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

@media (max-width: 900px) {
  .page-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-column {
    flex-direction: column;
  }
}

.plans-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.plans-hero-content {
  position: relative;
  z-index: 1;
}

.plans-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.plans-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.plans-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.plans-page {
  padding: 2rem 1.2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-category {
  margin-bottom: 60px;
  margin: 4rem 0;
  scroll-margin-top: 90px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.plan-category.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0b0f32;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title .cat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.category-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 400;
  padding-left: 56px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 1.5rem;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  border: 2px solid #f0f0f0;
  animation: fadeInUp 0.6s ease forwards;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(26, 96, 254, 0.12);
  border-color: #d0d8ff;
}

.plan-card.featured {
  border: 2px solid #1a60fe;
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(26, 96, 254, 0.15);
}

.plan-card.featured:hover {
  transform: translateY(-6px);
  border-color: #1a60fe;
  box-shadow: 0 22px 50px rgba(26, 96, 254, 0.22);
}

.plan-badge {
  position: absolute;
  top: -13px;
  right: 22px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(26, 96, 254, 0.35);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f5f5f5;
}

.plan-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
}

.price {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a60fe;
  margin-bottom: 4px;
  line-height: 1.2;
}

.currency {
  font-size: 1rem;
  color: #888;
  font-weight: 500;
}

.price-note {
  color: #999;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 4px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.55;
}

.plan-features i {
  color: #00c9a7;
  font-size: 1rem;
  min-width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: auto;
}

.delivery-note {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 10px 0 4px 0;
  color: #0369a1;
  background: #e0f2fe;
  padding: 7px 12px;
  border-radius: 8px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.delivery-note i {
  color: #0284c7;
  flex-shrink: 0;
}

.warning-note {
  font-size: 0.82rem;
  color: #92400e;
  background: #fef3c7;
  padding: 6px 10px;
  border-radius: 0 8px 8px 0;
  margin: 6px 0;
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 7px;
  border-left: 3px solid #f59e0b;
  margin-bottom: 12px;
  box-sizing: border-box;
  line-height: 1.45;
}

.warning-note i {
  color: #d97706;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta .btn.primary {
  width: 100%;
  padding: 13px 20px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.plan-cta .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 96, 254, 0.35);
}

.reminder-note {
  background-color: red;
  color: #075e54;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  text-align: center;
  display: flex;
  margin-top: 8px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  font-weight: 500;
}

.reminder-note::before {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  color: #25d366;
  font-size: 0.95rem;
}

.whatsapp-global-note {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.1),
    rgba(7, 94, 84, 0.08)
  );
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  border-radius: 16px;
  padding: 18px 28px;
  margin: 48px 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  font-weight: 600;
  color: #065f46;
  text-align: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.08);
}

.whatsapp-global-note i {
  font-size: 2rem;
  color: #25d366;
  flex-shrink: 0;
}

.requirements-section {
  margin: 20px 0 48px;
}

.section-title-plans {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  text-align: center;
  color: #0b0f32;
  margin-bottom: 10px;
}

.section-sub-plans {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.req-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #f0f0f0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.req-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(26, 96, 254, 0.1);
  border-color: #c7d7ff;
}

.req-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.08),
    rgba(193, 57, 255, 0.08)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease;
}

.req-card:hover .req-icon {
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.15),
    rgba(193, 57, 255, 0.15)
  );
}

.req-icon i {
  font-size: 1.8rem;
  color: #1a60fe;
}

.req-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b0f32;
}

.req-card p {
  color: #5a6874;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-inner p {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.9;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a60fe;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-inner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.req-card,
.plan-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.req-card.visible,
.plan-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-card.featured.visible {
  transform: translateY(0);
}

.plan-card.featured.visible:hover {
  transform: translateY(-6px);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.legal-hero .hero-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  display: block;
}

.notice-box {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 20px 0;
  border: 1px solid rgba(5, 150, 105, 0.2);
  text-align: center;
  border-left: 4px solid #c139ff;
}

.notice-box p {
  margin: 0;
  font-weight: 500;
  color: #1a60fe;
  font-size: 0.95rem;
}

.toc-card h3 i {
  color: #1a60fe;
}

.toc-list li a:hover {
  background: rgba(5, 150, 105, 0.08);
  transform: translateX(3px);
}

.privacy-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 60px;
}

.privacy-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
  scroll-margin-top: 90px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.privacy-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-section h3 i {
  color: #1a60fe;
}

.privacy-section p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.85;
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 6px;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}

.info-box p,
.info-box ul {
  margin: 0;
}

.info-box.personal {
  border-left: 4px solid #1a60fe;
  background: #f0f5ff;
  border: 1px solid rgba(26, 96, 254, 0.15);
}

.info-box.personal::before {
  background: #1a60fe;
}

.info-box.personal h4 {
  color: #1e3a8a;
}

.info-box.automated {
  border-left: 4px solid #00c9a7;
  background: #f5f3ff;
  border: 1px solid rgba(129, 44, 234, 0.15);
}

.info-box.automated::before {
  background: #812cea;
}

.info-box.automated h4 {
  color: #4c1d95;
}

.info-box.payment {
  border-left: 4px solid #c139ff;
  background: #ecfdf5;
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.info-box.payment::before {
  background: #1a60fe;
}

.info-box.payment h4 {
  color: #c139ff;
}

.usage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.2);
}

.cookie-type:nth-child(1) {
  border-color: #1a60fe;
}

.cookie-type:nth-child(2) {
  border-color: #059669;
}

.cookie-type:nth-child(3) {
  border-color: #f59e0b;
}

.security-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.1);
}

.right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}

.highlight-box {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border-left: 4px solid #f59e0b;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 1rem 0;
  border: 1px solid rgba(251, 191, 36, 0.3);
  margin-top: 14px;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.last-updated i {
  color: #1a60fe;
  margin-right: 6px;
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.portfolio-hero-content {
  position: relative;
  z-index: 1;
}

.portfolio-hero h1 .gradient-text {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.refund-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 60px;
}

.refund-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.refund-intro h2 i {
  color: #1a60fe;
  margin-right: 8px;
}

.refund-section {
  margin-bottom: 40px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
  scroll-margin-top: 90px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.refund-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.refund-section p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.refund-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.8;
  padding-left: 20px;
}

.refund-section ul li {
  margin-bottom: 6px;
}

.eligibility-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}

.eligibility-box.refundable {
  border-left: 4px solid #00c9a7;
  background: #f0fdf6;
  border: 1px solid rgba(0, 188, 107, 0.2);
}

.eligibility-box.refundable::before {
  background: #00bc6b;
}

.eligibility-box.non-refundable {
  border-left: 4px solid #f33;
  background: #fff5f5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.eligibility-box.non-refundable::before {
  background: #ef4444;
}

.eligibility-box.refundable h4 {
  color: #065f46;
}

.eligibility-box.non-refundable h4 {
  color: #991b1b;
}

.eligibility-box p,
.eligibility-box ul {
  margin: 0;
}

.highlight {
  color: #1a60fe;
  font-weight: 600;
}

.timeline-box h4:first-child {
  margin-top: 0;
}

.timeline-box h4 i {
  margin-right: 8px;
  color: #1a60fe;
}

.email-line .highlight {
  color: #63b3ed;
  font-weight: 600;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 96, 254, 0.1);
}

.contact-refund h3 i {
  margin-right: 10px;
}

.contact-refund a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.services-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  top: -140px;
  right: -100px;
  animation: floatCircle 9s ease-in-out infinite;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

.services-hero-content {
  position: relative;
  z-index: 1;
}

.services-hero .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.services-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.services-hero h1 span {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero .hero-sub {
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.hero-stat {
  color: #fff;
  text-align: center;
}

.legal-hero-tc {
  background: linear-gradient(#1a60fe, #c139ff);
  padding: 60px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero-tc::before {
  content: "";
  position: absolute;
  inset: 0;
}

.terms-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 60px;
}

.terms-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
  scroll-margin-top: 90px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.terms-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.terms-section p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.terms-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.85;
  padding-left: 20px;
}

.terms-section ul li {
  margin-bottom: 6px;
}

.term-card:hover {
  box-shadow: 0 8px 24px rgba(26, 96, 254, 0.08);
  transform: translateX(4px);
}

.term-card .card-body p,
.term-card .card-body ul {
  margin: 0;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}

.badge.required {
  background: #fee2e2;
  color: #b91c1c;
}

.badge.included {
  background: #d1fae5;
  color: #065f46;
}

.badge.optional {
  background: #e0f2fe;
  color: #0369a1;
}

.services-hero {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-container,
.refund-container,
.terms-container {
  max-width: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: break-word;
}

.privacy-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ecfdf5;
  flex-wrap: wrap;
}

.privacy-section h2 i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #059669, #1a60fe);
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.info-box {
  background: white;
  border-radius: 14px;
  padding: 16px;
  margin: 12px 0;
  border: 2px solid #e8f0fe;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.info-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}

.info-box ul {
  padding-left: 20px;
}

.info-box ul li {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.usage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.usage-card {
  background: #fff;
  padding: 16px 12px;
  border-radius: 14px;
  text-align: center;
  border-top: 3px solid #1a60fe;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.usage-card i {
  font-size: 1.3rem;
  color: #1a60fe;
  margin-bottom: 10px;
  display: block;
}

.usage-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0b0f32;
  margin: 0 0 4px;
}

.usage-card p {
  color: #666;
  font-size: 0.75rem;
  margin: 0;
}

.cookie-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.cookie-type {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  border-left: 3px solid #1a60fe;
  border: 1px solid #e2e8f0;
  border-top: 4px solid;
}

.cookie-type h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0b0f32;
}

.cookie-type p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #0b0f32;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.security-badge i {
  color: #1a60fe;
  font-size: 0.95rem;
}

.rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

.right-item {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.right-item i {
  color: #1a60fe;
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 24px;
  flex-shrink: 0;
}

.right-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0b0f32;
  margin: 0 0 4px;
}

.right-item p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

.contact-privacy {
  background: linear-gradient(135deg, #c139ff, #1a60fe);
  color: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  margin: 24px 0 16px;
  margin-top: 20px;
}

.contact-privacy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.2rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-item i {
  color: #fff;
  font-size: 1rem;
  margin-right: 3px !important;
  width: 24px;
  text-align: center;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 500;
  font-size: 0.85rem;
  word-break: break-all;
}

.notice-box,
.highlight-box {
  padding: 12px 16px;
}

.notice-box p,
.highlight-box p {
  font-size: 0.85rem;
}

.last-updated {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #ecfdf5;
}

.last-updated p {
  color: #888;
  font-size: 0.8rem;
}

.refund-intro {
  background: linear-gradient(135deg, #f0f5ff, #f9f0ff);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 32px;
  text-align: center;
  border-left: 5px solid #1a60fe;
}

.refund-intro h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
  flex-wrap: wrap;
}

.refund-intro p {
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-size: 0.9rem;
}

.refund-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eef2fb;
  flex-wrap: wrap;
}

.refund-section h2 i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.refund-section p,
.refund-section li {
  font-size: 0.9rem;
}

.eligibility-box {
  background: white;
  border-radius: 14px;
  padding: 16px;
  margin: 12px 0;
  border: 2px solid #e8f0fe;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.eligibility-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}

.eligibility-box p,
.eligibility-box li {
  font-size: 0.85rem;
}

.eligibility-box ul {
  padding-left: 20px;
  margin-top: 8px;
}

.timeline-box {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin: 1.5rem 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.timeline-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 10px;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #f8faff;
  border-radius: 10px;
  padding: 10px 12px;
  color: #444;
}

.timeline-item i {
  color: #1a60fe;
  font-size: 0.9rem;
  min-width: 24px;
}

.timeline-item span {
  font-size: 0.85rem;
}

.process-step {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  border-top: 3px solid #1a60fe;
  border: 1px solid #e8edf5;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}

.process-step h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0b0f32;
  margin: 0 0 6px;
}

.process-step p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

.contact-refund {
  background: linear-gradient(135deg, #1a60fe, #812cea);
  color: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  margin: 2.5rem 0 1rem;
  margin-top: 40px;
}

.contact-refund h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  margin: 0 0 10px;
}

.contact-refund p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
  font-size: 0.9rem;
}

.contact-refund a {
  color: #1a60fe;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}

.terms-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eef2fb;
  flex-wrap: wrap;
}

.terms-section h2 i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.terms-section p,
.terms-section li {
  font-size: 0.9rem;
}

.term-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  flex-direction: column;
}

.term-card .card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f0f5ff, #f5f0ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a60fe;
  font-size: 0.9rem;
}

.term-card .card-body h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b0f32;
  margin: 0 0 6px;
}

.term-card .card-body p,
.term-card .card-body li {
  font-size: 0.85rem;
}

.term-card .card-body ul {
  padding-left: 20px;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}

.terms-section .highlight-box {
  padding: 12px 16px;
}

.terms-section .highlight-box p {
  font-size: 0.85rem;
}

.legal-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 4px 12px;
  color: #fff;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
}

.legal-hero .hero-badge i {
  font-size: 0.7rem;
}

.toc-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0b0f32;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a60fe;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.toc-list li a i {
  font-size: 0.7rem;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
  max-width: 140px;
  height: auto;
  max-height: 40px;
}

.footer-section h5 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-section p,
.footer-section a {
  font-size: 0.8rem;
}

.footer-links li {
  margin-bottom: 6px;
  margin: 0.3rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-container p,
.refund-container p,
.terms-container p,
.contact-item a,
.email-template {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.portfolio-page,
.projects-container {
  overflow-x: hidden;
}

.portfolio-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem !important;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
  word-break: break-word;
}

.portfolio-hero .hero-subtitle {
  color: rgba(255, 255, 255, 1);
  font-size: 0.95rem !important;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
  padding: 0 12px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.image-wrapper {
  position: relative;
  width: 100%;
  background: #f0f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #f8fafd;
}

.project-details {
  padding: 1.25rem !important;
}

.project-details h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem !important;
  font-weight: 700;
  margin: 0 0 0.65rem 0;
  color: #0b0f32;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 0.5rem !important;
}

.project-details p {
  color: #5a6874;
  font-size: 0.85rem !important;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eff3f8;
}

.project-meta span {
  font-size: 0.7rem !important;
  color: #6c7a8a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  background: #f8fafd;
  padding: 4px 10px !important;
  border-radius: 30px;
  white-space: nowrap;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.85) 0%,
    rgba(193, 57, 255, 0.85) 100%
  );
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.project-link {
  background: #ffffff;
  color: #1a60fe;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    background 0.2s;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
  transform: translateY(15px);
}

.project-link i {
  font-size: 0.8rem;
}

.tech-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.tech-badge span {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.6rem !important;
  font-weight: 600;
  padding: 3px 8px !important;
  border-radius: 40px;
  letter-spacing: 0.3px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.filter-section {
  margin: 20px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 30px;
}

#emptyState {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.95rem;
  color: #666;
}

.project-card {
  background: #ffffff;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: cardFadeUp 0.5s ease forwards;
  opacity: 0;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-wrapper img[src=""] {
  min-height: 180px;
  background: linear-gradient(135deg, #f0f5ff, #f5f0ff);
}

.image-wrapper img.error {
  display: none;
}

.project-details h4,
.project-details p,
.project-meta span {
  word-wrap: break-word;
  word-break: break-word;
}

@media (hover: hover) {
  .project-link {
    transition:
      transform 0.25s ease,
      background 0.25s;
  }

  .project-card:hover {
    transform: translateY(-6px);
  }
}

@media (hover: none) {
  .project-card:active {
    transform: scale(0.98);
  }

  .project-overlay {
    opacity: 0;
    transition: none;
  }
}

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text, #1f1f1f);
  margin: 0;
  background: var(--muted, #f5f7fa);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  background-color: #ffffff;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  width: calc(100% - 32px);
  max-width: var(--max-width, 1100px);
  margin: 0 auto;
  position: sticky;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0;
  left: 0;
  width: 100%;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  max-width: 1200px;
  margin: auto;
  width: 90%;
}

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
    gap: 1.5rem;
    transform: none;
  }

  .nav-overlay {
    display: none !important;
  }

  body.menu-open {
    overflow: visible;
  }
}

.hero {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(to right, #f7f8fc, #ffffff);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stats-section {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  justify-content: space-around;
  text-align: center;
  padding: 2rem 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-section {
  text-align: center;
  padding: 40px 0;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin: 0 0 8px;
  font-weight: bold;
  color: #0b0f32;
  margin-bottom: 0.5rem;
  text-align: center;
}

.why-choose-us {
  padding: 40px 0;
  background: #f8f9fc;
  text-align: center;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.testimonials-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  html {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-features {
    display: inline-block;
    text-align: left;
    margin: 20px auto;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

.plans-hero {
  background: linear-gradient(90deg, #1a60fe, #c139ff);
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  margin-top: 2rem;
  align-items: start;
}

.portfolio-hero {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  margin-top: 1rem;
  max-width: 500px !important;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px !important;
  margin: 0 auto !important;
}

@media (min-width: 1400px) {
  .image-wrapper img {
    object-fit: contain;
    width: 100%;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    max-width: 1200px !important;
  }
}

.legal-hero {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
  padding: 40px 16px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  word-break: break-word;
}

.legal-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 20px;
  padding: 0 8px;
}

.toc-card {
  background: #f0fdf9;
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 16px;
  padding: 20px 16px;
  margin: 24px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-section,
.refund-section,
.terms-section {
  margin-bottom: 30px;
}

.privacy-section h2,
.refund-section h2,
.terms-section h2 {
  font-size: 1.25rem;
  flex-wrap: wrap;
}

.privacy-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0b0f32;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.info-box,
.eligibility-box,
.term-card {
  padding: 16px;
  margin: 12px 0;
}

.info-box ul,
.eligibility-box ul {
  padding-left: 20px;
}

.info-box ul li,
.eligibility-box ul li {
  font-size: 0.85rem;
}

.usage-cards,
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 2rem 0;
  margin-top: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .usage-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .term-card {
    flex-direction: row;
  }

  .toc-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-details h4 {
    font-size: 1.25rem !important;
  }

  .project-details p {
    font-size: 0.9rem !important;
  }

  .portfolio-hero .hero-subtitle {
    font-size: 1rem !important;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    gap: 40px;
  }

  .hero-stat strong {
    font-size: 1.8rem;
  }

  .projects-grid {
    max-width: 700px !important;
    gap: 28px !important;
  }

  .portfolio-hero h1 {
    font-size: 2.5rem !important;
  }

  .usage-cards,
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why {
    padding: 5rem 2rem;
  }

  .why-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .portfolio-hero {
    padding: 70px 20px 60px;
  }

  .projects-grid {
    max-width: 1000px !important;
    gap: 32px !important;
  }

  .portfolio-hero h1 {
    font-size: 3rem !important;
  }

  .privacy-container,
  .refund-container,
  .terms-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .toc-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-privacy,
.contact-refund {
  padding: 24px 20px;
  margin: 24px 0;
}

.contact-info-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-preview {
    padding: 4rem 0;
  }

  .testimonials-preview h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .testimonial {
    margin-bottom: 0;
  }

  .why-content {
    margin: 0 auto;
  }

  .why-content h2 {
    text-align: center;
  }

  .btn.primary {
    align-self: center;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
  }

  .why-content::after {
    margin: 2rem 0;
  }

  .contact-info-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.email-template {
  background: #0b0f32;
  color: white;
  border-radius: 14px;
  padding: 16px;
  margin: 16px 0;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.email-line {
  color: #a0aec0;
  font-size: 0.8rem;
  line-height: 1.6;
  word-break: break-word;
}

.site-footer {
  margin-top: 60px;
  padding: 40px 20px 20px;
  background: #111;
  color: #eee;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section {
  background: linear-gradient(135deg, #1a60fe 0%, #812cea 50%, #c139ff 100%);
  padding: 40px 20px;
  margin-top: 12px;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  margin: 40px 0 24px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    min-width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }

  .hero-features {
    font-size: 1.05rem;
    gap: 10px;
  }

  .hero-features li {
    padding: 8px 12px;
  }

  .about-page {
    padding: 1rem;
  }

  .mission {
    padding: 1.2rem;
  }

  .team-card {
    padding: 1.5rem 1rem;
  }

  .plans-page {
    padding: 1rem;
  }

  .plan-card {
    padding: 1.2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .faq-item {
    padding: 1.2rem;
  }

  .services-page {
    padding: 1rem;
  }

  .service-card .icon {
    font-size: 2rem;
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .contact-form label {
    margin: 1.2rem 0 0.5rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .terms-page {
    padding: 1.5rem 0.5rem;
  }

  .terms-container {
    padding: 1.2rem;
  }

  .terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .refund-page {
    padding: 1.5rem 0.5rem;
  }

  .refund-container {
    padding: 1.2rem;
  }

  .refund-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .contact-refund {
    padding: 1.5rem;
  }

  .privacy-page {
    padding: 1.5rem 0.5rem;
  }

  .privacy-container {
    padding: 1.2rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .info-box {
    padding: 1.2rem;
  }

  .contact-privacy {
    padding: 1.5rem;
  }

  .right-item {
    padding: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .usage-cards {
    grid-template-columns: 1fr;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }

  .security-badges {
    flex-direction: column;
  }

  .services-hero h1 {
    font-size: 1.8rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-btn-row {
    flex-direction: column;
    align-items: center;
  }

  .legal-hero {
    padding: 32px 12px 24px;
  }

  .legal-hero h1 {
    font-size: 1.5rem;
  }

  .legal-hero .hero-subtitle {
    font-size: 0.85rem;
  }

  .privacy-section h2,
  .refund-section h2,
  .terms-section h2 {
    font-size: 1.1rem;
  }

  .privacy-section h3 {
    font-size: 0.9rem;
  }

  .info-box,
  .eligibility-box,
  .term-card {
    padding: 12px;
  }

  .privacy-section ul,
  .refund-section ul,
  .terms-section ul {
    padding-left: 16px;
  }

  .privacy-section li,
  .refund-section li,
  .terms-section li {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .contact-item a {
    font-size: 0.8rem;
  }

  .toc-card {
    padding: 16px 12px;
  }

  .toc-list li a {
    font-size: 0.8rem;
    padding: 5px 6px;
  }

  .email-template {
    padding: 12px;
    font-size: 0.8rem;
  }

  .email-line {
    font-size: 0.7rem;
  }

  .site-footer {
    padding: 24px 16px 16px;
  }

  .footer-logo {
    max-width: 110px;
  }

  .portfolio-hero .hero-subtitle {
    font-size: 0.85rem !important;
    padding: 0 8px;
  }

  .project-link {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat strong {
    font-size: 1.2rem;
  }

  .hero-stat span {
    font-size: 0.6rem;
  }

  html {
    font-size: 13px;
  }

  .container {
    width: calc(100% - 20px);
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 18px 14px;
  }

  .plans-hero h1 {
    font-size: 1.6rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .currency {
    font-size: 0.9rem;
  }

  .delivery-note,
  .warning-note {
    font-size: 0.7rem;
  }

  .reminder-note {
    font-size: 0.7rem;
  }

  .about-hero h1 {
    font-size: 1.6rem;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }

  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .form-card {
    padding: 20px 16px;
  }

  .submit-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .portfolio-hero {
    padding: 40px 12px 30px;
  }

  .portfolio-hero h1 {
    font-size: 1.6rem !important;
  }

  .projects-grid {
    padding: 0 12px !important;
    gap: 20px !important;
  }

  .project-details {
    padding: 1rem !important;
  }

  .project-details h4 {
    font-size: 1rem !important;
  }

  .project-details p {
    font-size: 0.8rem !important;
  }

  .project-meta span {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    white-space: normal;
    word-break: keep-all;
  }

  .cta-inner h2 {
    font-size: 1.3rem;
  }
}

.faq-section {
  margin: 5rem 0 3rem;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 20px;
  margin-top: 64px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
  height: auto;
}

iframe,
video,
embed {
  max-width: 100%;
}

@media (min-width: 1025px) {
  .hide-on-desktop {
    display: none !important;
  }
}

@supports (padding: max(0px)) {
  .hero,
  .about-hero,
  .contact-hero,
  .plans-hero,
  .services-hero,
  .legal-hero {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .legal-hero {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .privacy-container,
  .refund-container,
  .terms-container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .portfolio-hero {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .filter-section {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .site-header {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .hero,
  .about-hero,
  .contact-hero,
  .plans-hero,
  .services-hero,
  .legal-hero,
  .portfolio-hero {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .site-footer {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .projects-grid {
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card .icon,
  .service-card ul li {
    transition: none;
    animation: none;
  }

  .privacy-section,
  .refund-section,
  .terms-section,
  .info-box,
  .eligibility-box,
  .term-card {
    transition: none !important;
    animation: none !important;
  }

  .project-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slider .slide,
  .project-card,
  .service-card,
  .plan-card,
  .team-card {
    transition: none !important;
    animation: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .hide-on-tablet {
    display: none !important;
  }

  .text-center-tablet {
    text-align: center !important;
  }

  .hero-grid {
    gap: 30px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .portfolio-hero h1 {
    font-size: 1.4rem !important;
  }

  .project-details h4 {
    font-size: 0.95rem !important;
  }

  .project-meta {
    gap: 6px;
  }

  .project-meta span {
    font-size: 0.6rem !important;
    padding: 2px 6px !important;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1rem;
  }

  .avatar {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }

  .contact-item-row .ci-value {
    font-size: 0.75rem;
  }

  .footer-logo {
    max-width: 120px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .usage-cards,
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-hero {
    padding: 30px 16px 20px;
  }

  .portfolio-hero h1 {
    font-size: 1.5rem !important;
  }

  .projects-grid {
    max-width: 90% !important;
    gap: 20px !important;
  }

  .project-details {
    padding: 0.8rem !important;
  }

  .project-details h4 {
    font-size: 0.95rem !important;
  }

  .project-details p {
    font-size: 0.75rem !important;
  }

  .hero-stats {
    gap: 24px;
  }

  .site-header {
    position: sticky;
  }

  .hero {
    padding: 20px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .main-nav {
    padding: 60px 20px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-hero {
    padding: 20px 16px;
  }

  .legal-hero h1 {
    font-size: 1.4rem;
  }

  .toc-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media print {
  .service-card {
    break-inside: avoid;
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .service-card:hover {
    transform: none;
  }

  .site-header,
  .site-footer,
  .hamburger,
  .nav-overlay,
  .testimonial-controls,
  .cta-section,
  .hero-slider,
  .slider-btn,
  .slider-dots,
  .toc-card,
  .legal-hero .hero-badge,
  .notice-box .fa-exclamation-circle,
  .contact-privacy,
  .contact-refund,
  .portfolio-hero,
  .project-overlay,
  .filter-section {
    display: none !important;
  }

  .privacy-section,
  .refund-section,
  .terms-section {
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  .legal-hero {
    background: none !important;
    color: #000 !important;
    padding: 20px 0 !important;
  }

  .legal-hero h1 {
    color: #000 !important;
    font-size: 1.8rem !important;
  }

  .privacy-container,
  .refund-container,
  .terms-container {
    padding: 0 !important;
    box-shadow: none !important;
  }

  .projects-grid {
    display: block !important;
    padding: 0 !important;
  }

  .project-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 20px;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .project-link {
    display: none;
  }
}

.privacy-container p,
.refund-container p,
.terms-container p,
.contact-item a,
.email-template,
.project-details h4,
.project-details p,
.project-meta span {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-item .ci-value {
  word-break: break-all;
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
  }

  .contact-info img {
    margin: 0 auto 1rem;
  }

  .about-page h1.page {
    font-size: 2.2rem;
  }

  .about-page .lead {
    font-size: 1.1rem;
  }

  .mission {
    padding: 1.5rem;
  }

  .mission h2 {
    font-size: 1.5rem;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .plans-page h1.page {
    font-size: 2.2rem;
  }

  .plans-page .lead {
    font-size: 1.1rem;
  }

  .plan-card.featured:hover {
    transform: translateY(-5px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .services-page h1.page {
    font-size: 2.2rem;
  }

  .services-header .lead {
    font-size: 1.1rem;
  }

  .service-card .icon {
    font-size: 2.5rem;
    height: 70px;
    width: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-link {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
  }

  h1 {
    font-size: 1.75rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .profile-dropdown {
    right: -80px;
    width: 220px;
  }

  .profile-section {
    margin-left: 10px;
  }

  .contact-page {
    padding: 40px 0;
  }

  .contact-page h1.page {
    font-size: 2.2rem;
  }

  .contact-page .lead {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .contact-form,
  .contact-info {
    padding: 1.8rem;
  }

  .terms-page {
    padding: 2rem 1rem;
  }

  .terms-page h1.page {
    font-size: 2.2rem;
  }

  .terms-container {
    padding: 1.5rem;
  }

  .terms-section h2 {
    font-size: 1.4rem;
  }

  .terms-section h3 {
    font-size: 1.2rem;
  }

  .refund-page {
    padding: 2rem 1rem;
  }

  .refund-page h1.page {
    font-size: 2.2rem;
  }

  .refund-container {
    padding: 1.5rem;
  }

  .refund-intro {
    padding: 1.5rem;
  }

  .refund-section h2 {
    font-size: 1.3rem;
  }

  .eligibility-box {
    padding: 1.2rem;
  }

  .privacy-page {
    padding: 2rem 1rem;
  }

  .privacy-page h1.page {
    font-size: 2.2rem;
  }

  .privacy-container {
    padding: 1.5rem;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .usage-cards,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }

  .security-badges {
    flex-direction: column;
  }

  .contact-info-items {
    grid-template-columns: 1fr;
  }

  .stats-band {
    gap: 28px;
  }

  .stat-item .stat-number {
    font-size: 1.7rem;
  }

  .mission-box::after {
    display: none;
  }

  .usage-cards {
    grid-template-columns: 1fr 1fr;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .contact-privacy {
    padding: 24px 20px;
  }

  .email-template {
    padding: 18px;
  }

  .refund-intro,
  .contact-refund {
    padding: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .services-cta {
    padding: 40px 20px;
  }

  .services-cta h2 {
    font-size: 1.6rem;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }

  .term-card {
    flex-direction: column;
    gap: 10px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .faq-section {
    margin-top: 40px;
  }

  .faq-q {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .faq-a-inner {
    padding: 0 18px 14px;
    font-size: 0.85rem;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero .hero-sub {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .hero-stat-row {
    gap: 24px;
  }

  ul,
  ol {
    padding-left: 1.2rem;
  }

  li {
    word-break: break-word;
  }

  .toc-list li a,
  .contact-item a,
  .footer-links a {
    padding: 8px 4px;
    display: inline-block;
  }

  .project-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  html {
    font-size: 14px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    padding: 0.8rem 1rem;
  }

  .brand .logo {
    height: 40px;
    width: auto;
  }

  .hamburger {
    display: block !important;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    transition: color 0.3s ease;
  }

  .hamburger:hover,
  .hamburger:focus-visible {
    color: #1a60fe;
  }

  .main-nav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: 80px 24px 30px;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    border-radius: 10px 0 0 10px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted, #f5f7fa);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

  .main-nav .nav-close:hover,
  .main-nav .nav-close:focus-visible {
    background: #1a60fe;
    color: #fff;
  }

  .main-nav .nav-link {
    padding: 14px 0;
    color: #1f1f1f;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: left;
  }

  .main-nav .nav-link.cta {
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 16px;
    border: none;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 0;
  }

  .hero-features li {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .slider-btn {
    padding: 6px;
    font-size: 14px;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-sub {
    font-size: 0.9rem;
    padding: 0 16px;
  }

  .services-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 0;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-card ul li {
    font-size: 0.85rem;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-feature {
    padding: 16px;
  }

  .why-feature i {
    font-size: 1.5rem;
    padding: 10px;
  }

  .why-feature h4 {
    font-size: 1rem;
  }

  .why-feature p {
    font-size: 0.85rem;
  }

  .btn.primary {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials-section {
    padding: 2rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonial-card-inner {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .quote-icon i {
    font-size: 2rem;
  }

  .stars i {
    font-size: 0.8rem;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  .testimonial-controls {
    margin-top: 1.5rem;
    display: none;
  }

  .plans-hero h1 {
    font-size: 2rem;
  }

  .plans-hero .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .plans-hero-stats {
    gap: 20px;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-card {
    padding: 1.5rem;
  }

  .plan-card.featured {
    transform: none;
  }

  .price {
    font-size: 2rem;
  }

  .plan-header h3 {
    font-size: 1.2rem;
  }

  .plan-features li {
    font-size: 0.85rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

  .category-subtitle {
    padding-left: 0;
    font-size: 0.9rem;
  }

  .requirements-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .req-card {
    padding: 20px 16px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .hero-sub {
    font-size: 1rem;
    padding: 0 16px;
  }

  .mission-box {
    padding: 24px 20px;
  }

  .mission-box h2 {
    font-size: 1.4rem;
  }

  .mission-box p {
    font-size: 0.95rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 24px 20px;
  }

  .avatar {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-card {
    padding: 18px 16px;
  }

  .about-cta {
    padding: 36px 20px;
  }

  .about-cta h2 {
    font-size: 1.6rem;
  }

  .about-cta p {
    font-size: 0.95rem;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn-white,
  .cta-btn-ghost {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero .hero-sub {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .hero-contact-chips {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-chip {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-card .form-title {
    font-size: 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-card {
    padding: 20px;
  }

  .contact-item-row {
    padding: 10px 12px;
  }

  .contact-item-row .ci-value {
    font-size: 0.85rem;
    white-space: normal;
    word-break: break-word;
  }

  .social-row {
    justify-content: center;
  }

  .response-badge {
    padding: 12px;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .toc-list li a {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 30px 16px 20px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 28px;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .cta-section {
    padding: 36px 20px;
    margin: 30px 0 20px;
  }

  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .cta-inner p {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .cta-inner .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .faq-accordion {
    padding: 0;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .faq-item-acc.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .btn.primary,
  .btn.outline {
    font-size: 0.9rem;
  }

  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .text-center-mobile {
    text-align: center !important;
  }

  .flex-column-mobile {
    flex-direction: column !important;
  }

  .full-width-mobile {
    width: 100% !important;
  }

  .toc-list li a,
  .contact-item a,
  .footer-links a,
  .project-link {
    padding: 8px 4px;
    display: inline-block;
    min-height: 44px;
  }

  .faq-question,
  .eligibility-box,
  .term-card {
    cursor: pointer;
  }

  .privacy-section p,
  .refund-section p,
  .terms-section p {
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .filter-btn {
    min-height: 40px;
  }

  .project-card {
    -webkit-tap-highlight-color: rgba(26, 96, 254, 0.1);
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.why-choose-us h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0b0f32;
  margin-bottom: 30px;
}
      .reference-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.82rem;
        color: #1a60fe;
        text-decoration: none;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 8px;
        background: rgba(26, 96, 254, 0.08);
        transition: all 0.2s ease;
        margin-top: 6px;
        border: 1px solid rgba(26, 96, 254, 0.12);
      }
      .reference-link:hover {
        background: rgba(26, 96, 254, 0.18);
        transform: translateY(-2px);
        border-color: rgba(26, 96, 254, 0.25);
      }
      .reference-link i {
        font-size: 0.8rem;
      }
      .plan-features {
        margin-bottom: 0.6rem;
      }
      .plan-card .plan-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
      }
      .plan-card .plan-cta .reference-link {
        order: -1;
        margin-bottom: 6px;
      }
      .plan-subtitle {
        font-size: 0.9rem;
        color: #555;
        margin-bottom: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 1.4;
      }
      .perfect-for {
        font-size: 0.82rem;
        color: #1a60fe;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(26, 96, 254, 0.1);
        font-weight: 600;
        text-align: center;
      }
      .perfect-for i {
        margin-right: 6px;
        color: #c139ff;
      }
