.hero-section {
   position: relative;
   background: linear-gradient(180deg, rgba(255, 255, 255, 1), transparent, #d0e4ff55);
   /* background: linear-gradient(135deg, hsl(239, 84%, 67%) 0%, hsl(280, 100%, 70%) 100%); */
   min-height: 600px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 50px 0 2rem;
   overflow: hidden;
}

/* Content */
.hero-content {
   text-align: left;
   color: white;
   margin-bottom: 40px;
}

.hero-title {
   font-size: 3rem;
   font-weight: 700;
   font-family: "Poppins", sans-serif;
   line-height: 1.15;
   margin-bottom: 16px;
}

.gradient-text {
   background: linear-gradient(135deg, hsl(239, 84%, 67%) 0%, #28c3ef 100%);

   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.hero-subtitle {
   font-size: 1.15rem;
   font-weight: 500;
}

.button-group {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
}

/* Buttons */
.btn {
   padding: 16px 32px;
   font-size: 1.125rem;
   font-weight: 600;
   border-radius: 8px;
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}

.btn-primary {
   background-color: white;
   color: hsl(239, 84%, 67%);
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
   background-color: hsl(0, 0%, 95%);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
   transform: translateY(-2px);
}

.btn-secondary {
   background-color: rgba(255, 255, 255, 0.1);
   color: white;
   border: 1px solid rgba(255, 255, 255, 0.3);
   backdrop-filter: blur(10px);
}

.btn-secondary:hover {
   background-color: rgba(255, 255, 255, 0.2);
   transform: translateY(-2px);
}

/* Phone Mockups */
.phone-mockups {
   position: relative;
   display: flex;
   justify-content: center;
}

.phones-container {
   position: relative;
   display: flex;
   gap: 2rem;
   align-items: flex-end;
   justify-content: space-around;
   width: 100%;
}

.phone {
   position: relative;
   max-width: 260px;
   width: 100%;
   height: 520px;
   background: hsl(220, 13%, 95%);
   border: 1px solid hsl(220, 13%, 85%);
   border-radius: 30px;
   padding: 10px;
   box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);

}

.phone-1 {
   animation: float 3s ease-in-out infinite;
   -webkit-animation: float 3s ease-in-out infinite;
}

.phone-2 {
   animation: float 3s ease-in-out infinite 1.5s;
}

.phone-screen {
   display: flex;
   flex-direction: column;
   height: 100%;
   background: #fff;
   padding: 1rem;
   border-radius: 20px;
}

.phone-2 .phone-screen {
   background: linear-gradient(to bottom, hsl(280, 40%, 98%), white);
}

/* Status Bar */
.status-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 12px;
   color: hsl(220, 10%, 40%);
   margin-bottom: 16px;
}

.signal-dots {
   display: flex;
   gap: 2px;
}

.signal-dots .dot {
   width: 4px;
   height: 4px;
   background-color: hsl(220, 10%, 60%);
   border-radius: 50%;
}

/* Messages */
.messages {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.message {
   max-width: 75%;
   transition: all 0.3s ease;
}

.message-content {
   width: 100%;
   padding: 12px 0.75rem 0.25rem;
   border-radius: 1rem;
   font-size: 14px;
   line-height: 1.4;
   word-wrap: break-word;
   -webkit-border-radius: 1rem;
   -moz-border-radius: 1rem;
   -ms-border-radius: 1rem;
   -o-border-radius: 1rem;
}

.message-sent {
   align-self: flex-end;
}

.message-sent .message-content {
   background: hsl(239, 84%, 67%);
   color: white;
   border-end-end-radius: 0;
}

.message-received .message-content {
   background: hsl(220, 13%, 91%);
   color: hsl(222, 84%, 5%);
   border-end-start-radius: 0;
}

.message-status {
   display: flex;
   align-items: center;
   gap: 4px;
   font-size: 11px;
   margin-block: 5px 4px;
   justify-content: flex-end;
   opacity: 0.8;
}

.message-time {
   font-size: 11px;
   margin-block: 4px 5px;
   opacity: 0.6;
}

.check-icon {
   font-size: 10px;
}

.check-icon.read {
   color: hsl(200, 80%, 60%);
}

/* Image Placeholder */
.message:has(img) {
   max-width: 66%;
}

/* Typing Indicator */
.typing-indicator,
.typing-indicator-receiver {
   display: flex;
   align-items: center;
   gap: 8px;
   color: hsl(220, 10%, 50%);
   font-size: 12px;
   opacity: 0;
   transition: all 0.3s ease;
}

.typing-indicator-receiver {
   justify-content: flex-end;
}

.typing-bubble {
   background: hsl(220, 13%, 91%);
   padding: 8px 12px;
   border-radius: 18px;
}

.typing-dots {
   display: flex;
   gap: 3px;
}

.typing-dots .dot {
   width: 6px;
   height: 6px;
   background-color: hsl(220, 10%, 60%);
   border-radius: 50%;
}

.bounce {
   animation: bounce 1.4s infinite ease-in-out;
}

.bounce:nth-child(2) {
   animation-delay: 0.16s;
}

.bounce:nth-child(3) {
   animation-delay: 0.32s;
}

/* Floating Elements */
.floating-element {
   position: absolute;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   animation: pulse 2s infinite;
}

.floating-1 {
   top: -16px;
   left: -16px;
   width: 32px;
   height: 32px;
}

.floating-2 {
   bottom: -16px;
   right: -16px;
   width: 48px;
   height: 48px;
   animation-delay: 1s;
}

.floating-3 {
   top: 50%;
   right: -32px;
   width: 24px;
   height: 24px;
   animation-delay: 2s;
}

/* Animations */

@keyframes float {

   0%,
   100% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-8px);
   }
}

@keyframes bounce {

   0%,
   80%,
   100% {
      transform: scale(0);
   }

   40% {
      transform: scale(1);
   }
}

/* @keyframes pulse {

   0%,
   100% {
      opacity: 0.3;
   }

   50% {
      opacity: 0.6;
   }
} */

/* Responsive Design */
@media (max-width: 768px) {

   .hero-title {
      font-size: 2.5rem;
   }

   .hero-subtitle {
      font-size: 1.1rem;
   }

   .phones-container {
      gap: 1rem;
      /* scale: 0.8; */
   }

   .button-group {
      justify-content: center;
   }

   .phone-screen {
      padding-inline: 0.5rem;
   }
}

/* Step Animation Classes */
.step-1,
.step-2,
.step-3,
.step-4 {
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.5s ease;
}

/* ---------  About us section ------ */

.rcs-section {
   padding: 6rem 0rem 4rem;
   /* background: linear-gradient(180deg, #fafcff 0%, #f8fafc 100%); */
}

.rcs-section.gradient {
   background: linear-gradient(180deg, #d0e4ff55 0%, #ffffff 100%);
}

.main_heading {
   margin-bottom: 1.75rem;
}

.main_heading h2 {
   display: inline-block;
   font-size: 2.5rem;
   margin-bottom: 0.75rem;
   font-weight: 800;
   color: #0f172a;
   background: linear-gradient(135deg, #1e40af, #3b82f6);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   line-height: 1.1;
}

.main_heading.dark {
   display: block;
   color: #222;
   background: none;
   -webkit-text-fill-color: #000;
}

.description {
   font-size: 1.05rem;
   line-height: 1.5;
   font-weight: 500;
   color: #333;
}

@media (max-width: 768px) {
   .main_heading h2 {
      font-size: 2.25rem;
   }

   .description {
      font-size: 1rem;
   }
}

.features-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.feature-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   color: #3b82f6;
   background: rgba(59, 130, 246, 0.1);
   padding: 0.5rem;
   border-radius: 8px;
   transition: color 0.3s ease;
}

.feature-text {
   color: #1a1a1a;
   font-size: 1.1rem;
   font-weight: 600;
}

.image-side {
   position: relative;
}

.image-container {
   position: relative;
   overflow: hidden;
}

.compare_img {
   width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
}

.floating-card {
   position: absolute;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(59, 130, 246, 0.2);
   border-radius: 12px;
   padding: .75rem 1rem;
   box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.floating-card-top {
   bottom: -1.5rem;
   right: -1.5rem;
}

.floating-card-bottom {
   bottom: -1.5rem;
   left: 0rem;
}

.card-content {
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.card-icon {
   color: #3b82f6;
}

.card-icon-secondary {
   color: #8b5cf6;
}

.card-text {
   display: flex;
   flex-direction: column;
}

.card-title {
   font-weight: 600;
   color: #1a1a1a;
   font-size: 1.1rem;
}

.card-subtitle {
   font-size: 0.875rem;
   color: #64748b;
   font-weight: 500;
}

.compare {
   padding: 50px 16px;
   background: #f9fafc;
   font-family: system-ui, sans-serif;
}

.compare__container {
   max-width: 900px;
   margin: 0 auto;
}

.compare__title {
   font-size: 2rem;
   margin-bottom: 8px;
   text-align: center;
}

.compare__subtitle {
   text-align: center;
   margin-bottom: 30px;
   color: #555;
}

.compare__table {
   display: grid;
   border-radius: 12px;
   overflow: hidden;
}

.compare__row {
   display: grid;
   grid-template-columns: 1fr 1fr 1.2fr;
   border-bottom: 1px solid #cccc;
}

.compare__cell {
   padding-block: 0.75rem 0.5rem;
   padding-inline: 0.75rem 0.5rem;
   font-size: 0.92rem;
   color: #222;
   border-right: 1px solid #dddd;
}

.compare__feature {
   font-weight: 600;
   background: #f1f4f9;
}

.highlight {
   font-weight: 500;
   color: #0366d6;
}

/* Responsive */
@media (max-width: 700px) {
   .rcs-section .about_left .main_heading {
      padding-inline: 1rem;
   }

   .compare__cell {
      border-right: none !important;
      border-bottom: 1px solid #eee;
   }

   .compare__cell:last-child {
      border-bottom: none;
   }

   .compare__feature {
      background: #f1f4f9;
   }
}

/* Section base */

.features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 1.5rem;
   margin-top: 1rem;
}

.feature-card {
   background: #ffffff;
   padding: 2rem 1.5rem;
   border-radius: 16px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   border: 1px solid #f3f4f6;
   transition: all 0.3s ease;
}

.feature-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
   border-color: #e5e7eb;
}

.icon {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, #3b82f6, #1d4ed8);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   color: white;
   transition: transform 0.3s ease;
}

.feature-card:hover .icon {
   transform: scale(1.1);
}

.feature-card h4 {
   font-size: 1.125rem;
   font-weight: 500;
   color: #111827;
   line-height: 1.4;
   margin: 0;
   text-transform: capitalize;
   font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
   .features-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
   }

   .feature-card {
      padding: 1.5rem 1.25rem 1.25rem;
   }
}

/* RCS Features Section */
.features-section {
   position: relative;
   background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0, #f8fafc 100%);
   overflow: hidden;
   z-index: 0;
}

.features-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
   opacity: 0.5;
   z-index: -1;
   pointer-events: none;
}

.features-section .main_heading p {
   font-size: 1.15rem;
   color: #64748b;
   max-width: 500px;
   margin: 0 auto;
}

.features-showcase {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 28px;
}

.features-section .feature-item {
   position: relative;
   background: #fff;
   border-radius: 20px;
   padding: 2.25rem 1.75rem 2rem;
   text-align: center;
   border: 1px solid #ddd;
   backdrop-filter: blur(10px);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   overflow: hidden;
}

.feature-item::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
   transition: left 0.6s ease;
}

.feature-item:hover::before {
   left: 100%;
}

.feature-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
   border-color: #3b82f6;
}

.features-section .feature-item:nth-of-type(2) {
   border-color: #3b82f6;
}

.feature-visual {
   height: 120px;
   margin-bottom: 1.75rem;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
}

.feature-content h4 {
   font-size: 1.3rem;
   font-weight: 500;
   margin-bottom: 0.75rem;
   font-family: "Poppins", sans-serif;
}

.feature-content p {
   color: #64748b;
   font-size: 1rem;
   line-height: 1.6;
   margin: 0;
}

/* Media Preview */
.media-preview {
   display: flex;
   gap: 8px;
   align-items: center;
}

.media-item {
   width: 30px;
   height: 30px;
   border-radius: 8px;
   position: relative;
   animation: float 3s ease-in-out infinite;
}

.media-item.image {
   background: linear-gradient(135deg, #10b981, #059669);
   animation-delay: 0s;
}

.media-item.video {
   background: linear-gradient(135deg, #f59e0b, #d97706);
   animation-delay: 0.5s;
}

.media-item.gif {
   background: linear-gradient(135deg, #ef4444, #dc2626);
   animation-delay: 1s;
}

.media-item::after {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 12px;
   height: 12px;
   background: white;
   border-radius: 2px;
}

/* Chat Preview */
.chat-preview {
   width: 100%;
}

.feature-item .message {
   background: #3b82f6;
   color: white;
   padding: 12px 16px;
   border-radius: 18px;
   margin-bottom: 12px;
   font-size: 0.9rem;
   display: inline-block;
}

.feature-item .suggested-replies {
   display: flex;
   gap: 8px;
   justify-content: center;
   flex-wrap: wrap;
}

.reply-btn {
   background: #f1f5f9;
   color: #3b82f6;
   padding: 8px 12px;
   border-radius: 20px;
   font-size: 0.8rem;
   font-weight: 500;
   border: 1px solid #e2e8f0;
   cursor: pointer;
   transition: all 0.3s ease;
}

.reply-btn:hover {
   background: #3b82f6;
   color: white;
   transform: scale(1.05);
}

/* Receipt Preview */
.receipt-preview {
   display: flex;
   flex-direction: column;
   gap: 16px;
   align-items: center;
}

.feature-item .message-status {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.96rem;
   font-weight: 500;
   color: #111;
   letter-spacing: 0.4px;
}

.status-indicator {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   position: relative;
}

.status-indicator.delivered {
   background: #10b981;
}

.status-indicator.read {
   background: #3b82f6;
}

.status-indicator::after {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 4px;
   height: 4px;
   background: white;
   border-radius: 50%;
}

/* Integration Preview */
.integration-preview {
   position: relative;
   width: 80px;
   height: 60px;
}

.api-nodes {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.node {
   width: 16px;
   height: 16px;
   background: linear-gradient(135deg, #3b82f6, #1d4ed8);
   border-radius: 50%;
   position: relative;
   animation: nodepulse 2s infinite;
   -webkit-animation: nodepulse 2s infinite;
}

.node:nth-child(2) {
   animation-delay: 0.4s;
}

.node:nth-child(3) {
   animation-delay: 0.6s;
}

.connection-lines {
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(90deg, #3b82f6, #10b981, #3b82f6);
   transform: translateY(-50%);
   opacity: 0.6;
   z-index: -1;
}

/* Animations */
@keyframes float {

   0%,
   100% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-10px);
   }
}

@keyframes nodepulse {

   0%,
   100% {
      transform: scale(1);
      opacity: 1;
   }

   50% {
      transform: scale(1.25);
      opacity: 0.8;
   }
}

@keyframes slideInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.feature-item.animate {
   animation: slideInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
   .features-section {
      padding: 80px 16px;
   }

   .features-showcase {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .feature-item {
      padding: 30px 20px;
   }

   .suggested-replies {
      gap: 6px;
   }

   .reply-btn {
      font-size: 0.75rem;
      padding: 6px 10px;
   }
}

/* CTA Section */
.cta-section {
   position: relative;
   background: linear-gradient(to bottom, #fff, #f8fafc, #e2e8f0 50%, #cbd5e1 100%);
   overflow: hidden;
}

.cta-section::before {
   content: '';
   position: absolute;
   top: 20%;
   left: 10%;
   width: 200px;
   height: 200px;
   background: linear-gradient(45deg, #3b82f6, #8b5cf6);
   border-radius: 50%;
   opacity: 0.1;
   animation: float 6s ease-in-out infinite;
}

.cta-section::after {
   content: '';
   position: absolute;
   bottom: 20%;
   right: 2%;
   width: 150px;
   height: 150px;
   background: linear-gradient(45deg, #10b981aa, #06b6d4);
   border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
   opacity: 0.1;
   animation: float 8s ease-in-out infinite reverse;
   z-index: 0;
}

.cta-container {
   position: relative;
   margin: 0 auto;
   background: rgba(255, 255, 255, 0.75);
   backdrop-filter: blur(20px);
   border-radius: 32px;
   padding: 60px 40px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   overflow: hidden;
   z-index: 1;
}

.cta-icon {
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 3rem;
   animation: iconPulse 3s ease-in-out infinite;
   box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.cta-icon::before {
   content: '';
   position: absolute;
   top: -10px;
   left: -10px;
   right: -10px;
   bottom: -10px;
   background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
   border-radius: 50%;
   z-index: -1;
   opacity: 0.3;
   animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {

   0%,
   100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }
}

@keyframes iconGlow {
   0% {
      opacity: 0.2;
      transform: scale(1);
   }

   100% {
      opacity: 0.4;
      transform: scale(1.1);
   }
}

.cta-section h2 {
   font-size: 2.25rem;
   font-weight: 800;
   background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, var(--primary-color) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 20px;
   line-height: 1.15;
}

.cta-section p {
   font-size: 1.15rem;
   color: #64748b;
   margin-bottom: 40px;
   max-width: 540px;
   margin-inline: auto;
   line-height: 1.6;
}

.cta-buttons {
   display: flex;
   gap: 1.1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.cta-button {
   position: relative;
   display: flex;
   gap: 0.75rem;
   justify-content: center;
   align-items: center;
   padding: 1rem 1.7rem;
   border: none;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 500;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   overflow: hidden;
   min-width: 10rem;
   text-decoration: none;
}

.cta-button:hover {
   transform: translateY(-3px) scale(1.02);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   text-decoration: none;
}

.cta-button::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
   transition: left 0.6s ease;
}

.cta-button:hover::before {
   left: 100%;
}

.cta-button.primary {
   background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
   color: white;
   box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-button.whatsapp {
   background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
   color: white;
   box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-button.call {
   background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
   color: white;
   box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.cta-button:active {
   transform: translateY(-1px) scale(0.98);
}

.cta-button svg {
   transition: transform 0.3s ease;
}

.cta-button:hover svg {
   transform: translateX(4px);
}

.cta-button.whatsapp:hover svg {
   transform: scale(1.2) rotate(10deg);
}

.cta-button.call:hover svg {
   animation: ring 0.6s ease-in-out;
}

@keyframes ring {

   0%,
   100% {
      transform: scale(1) rotate(0deg);
   }

   25% {
      transform: scale(1.1) rotate(-4deg);
   }

   75% {
      transform: scale(1.1) rotate(5deg);
   }
}

.decorative-elements {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   pointer-events: none;
}

.floating-shape {
   position: absolute;
   background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
   border-radius: 50%;
   animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
   width: 80px;
   height: 80px;
   top: 10%;
   left: 10%;
   animation-delay: 0s;
}

.shape-2 {
   width: 60px;
   height: 60px;
   top: 20%;
   right: 15%;
   animation-delay: 2s;
}

.shape-3 {
   width: 80px;
   height: 80px;
   bottom: 15%;
   left: 20%;
   animation-delay: 4s;
}

.shape-4 {
   width: 70px;
   height: 70px;
   bottom: 20%;
   right: 10%;
   animation-delay: 6s;
}

@keyframes floatShape {

   0%,
   100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.6;
   }

   33% {
      transform: translateY(-20px) rotate(120deg);
      opacity: 0.8;
   }

   66% {
      transform: translateY(10px) rotate(240deg);
      opacity: 0.4;
   }
}

.cta-visual {
   width: 200px;
   height: 200px;
   margin: 0 auto 40px;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
}

.rocket-container {
   position: relative;
   animation: rocketFloat 4s ease-in-out infinite;
}

.rocket {
   font-size: 4rem;
   filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
}

.orbit {
   position: absolute;
   border: 2px dashed rgba(59, 130, 246, 0.3);
   border-radius: 50%;
   animation: orbit 10s linear infinite;
}

.orbit-1 {
   width: 160px;
   height: 160px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.orbit-2 {
   width: 200px;
   height: 200px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation-direction: reverse;
   animation-duration: 15s;
}

.orbit-dot {
   position: absolute;
   width: 8px;
   height: 8px;
   background: linear-gradient(135deg, #3b82f6, #8b5cf6);
   border-radius: 50%;
   top: -4px;
   left: 50%;
   transform: translateX(-50%);
   box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

@keyframes orbit {
   from {
      transform: translate(-50%, -50%) rotate(0deg);
   }

   to {
      transform: translate(-50%, -50%) rotate(360deg);
   }
}

@keyframes rocketFloat {

   0%,
   100% {
      transform: translateY(0px) rotate(-5deg);
   }

   50% {
      transform: translateY(-15px) rotate(5deg);
   }
}

/* Responsive Design */

@media (max-width: 1200px) {

   .rcs-section {
      padding-block: 5rem 4rem;
   }
}

@media (max-width: 991px) {
   .hero-grid .col-lg-6:nth-of-type(2) {
      width: 100%;
   }
}

@media (max-width: 768px) {
   .rcs-section {
      padding-block: 4rem 3rem;
   }

   .phone {
      height: 500px;
   }

   .compare_img {
      width: 108%;
   }

   .floating-card {
      padding: .5rem 0.75rem 0.5rem 0.5rem;
   }

   .floating-card svg {
      width: 1.75rem;
   }

   .floating-card-bottom {
      left: -1rem;
   }

   .floating-card-top {
      right: -1rem;
   }

   .features-section .feature-item {
      padding: 1.75rem 1.5rem 1.5rem;
   }

   .feature-visual {
      height: 6.5rem;
   }

   .cta-section {
      padding-bottom: 5rem;
   }

   .cta-container {
      padding: 40px 24px;
      border-radius: 24px;
   }

   .cta-visual {
      display: none;
   }

   .cta-icon {
      font-size: 2.5rem;
   }

   .cta-section h2 {
      font-size: 2rem;
   }

   .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
   }

   .cta-button {
      width: 100%;
      max-width: 280px;
      padding: 14px 24px;
   }

   .floating-shape {
      display: none;
   }
}

@media (max-width: 480px) {
   .container {
      width: 100%;
   }

   .hero-title {
      font-size: 2.25rem;
   }

   .phone-1 {
      display: none;
   }

   .cta-section h2 {
      font-size: 1.75rem;
   }

   .cta-section p {
      font-size: 1rem;
   }
}