:root {
          --primary: #f97415;
          --secondary: #17203c;
          --accent: #ffffff;
          --dark-bg: #0d1117;
          --card-bg: rgba(23, 32, 60, 0.6);
          --border: rgba(249, 116, 21, 0.2);
          --shadow: 0 8px 32px rgba(249, 116, 21, 0.15);
          --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
}

body {
          font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
          background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary) 100%);
          color: var(--accent);
          min-height: 100vh;
          line-height: 1.6;
          overflow-x: hidden;
}

/* Animated Background */
body::before {
          content: '';
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background:
                    radial-gradient(circle at 20% 80%, rgba(249, 116, 21, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(249, 116, 21, 0.08) 0%, transparent 50%);
          pointer-events: none;
          z-index: -1;
}

/* Header */
header {
          background: rgba(23, 32, 60, 0.95);
          backdrop-filter: blur(20px);
          padding: 1.2rem 0;
          position: sticky;
          top: 0;
          z-index: 1000;
          border-bottom: 1px solid var(--border);
}

.header-container {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 2rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
}

.logo {
          display: flex;
          align-items: center;
          gap: 12px;
          font-size: 1.8rem;
          font-weight: 700;
          color: var(--accent);
          text-decoration: none;
}

.logo i {
          color: var(--primary);
          font-size: 2rem;
}

.logo-image{
    width: auto;
    height: 48px;
}

nav ul {
          display: flex;
          list-style: none;
          gap: 0.5rem;
}

nav a {
          color: var(--accent);
          text-decoration: none;
          font-weight: 500;
          padding: 0.7rem 1.3rem;
          border-radius: 8px;
          transition: var(--transition);
          position: relative;
}

nav a:hover {
          background: rgba(249, 116, 21, 0.1);
          color: var(--primary);
}

nav a.active {
          background: var(--primary);
          color: var(--secondary);
}

.user-actions {
          display: flex;
          gap: 1rem;
          align-items: center;
}

.btn {
          padding: 0.75rem 1.8rem;
          border-radius: 8px;
          border: none;
          font-weight: 600;
          cursor: pointer;
          transition: var(--transition);
          display: inline-flex;
          align-items: center;
          gap: 8px;
          font-size: 0.95rem;
}

.btn-primary {
          background: var(--primary);
          color: white;
}

.btn-primary:hover {
          transform: translateY(-2px);
          box-shadow: 0 12px 24px rgba(249, 116, 21, 0.3);
}

.btn-outline {
          background: transparent;
          color: var(--accent);
          border: 2px solid var(--primary);
}

.btn-outline:hover {
          background: var(--primary);
          color: var(--secondary);
}

/* Main Content */
main {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 2rem;
}

/* hero-area Section */
.hero-area {
          text-align: center;
          padding: 5rem 0;
          margin-bottom: 4rem;
}

.hero-area h1 {
          font-size: 3.5rem;
          margin-bottom: 1.5rem;
          font-weight: 800;
          line-height: 1.2;
}

.hero-gradient {
          background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          display: inline-block;
          background-clip: text;
}

.hero-area p {
          font-size: 1.25rem;
          max-width: 700px;
          margin: 0 auto 2.5rem;
          color: rgba(255, 255, 255, 0.8);
          line-height: 1.8;
}

.hero-area .btn-primary {
          padding: 1rem 2.5rem;
          font-size: 1.1rem;
}

/* Features Grid */
.features-section {
          padding: 3rem 0;
}

.section-title {
          text-align: center;
          font-size: 2.5rem;
          font-weight: 700;
          margin-bottom: 3rem;
          color: var(--accent);
}

.section-title span {
          color: var(--primary);
}

.features-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 2rem;
          margin-bottom: 4rem;
}

.feature-main-box {
          background: var(--card-bg);
          backdrop-filter: blur(10px);
          border: 1px solid var(--border);
          border-radius: 16px;
          padding: 2.5rem 2rem;
          text-align: center;
          transition: var(--transition);
          position: relative;
          overflow: hidden;
          flex: 0 0 calc(25% - 1.5rem);
          /* 4 cards per row */
          min-width: 280px;
          max-width: 350px;
}

.feature-main-box::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 4px;
          background: linear-gradient(90deg, var(--primary), transparent);
          transform: scaleX(0);
          transition: var(--transition);
}

.feature-main-box:hover {
          transform: translateY(-8px);
          box-shadow: var(--shadow);
          border-color: var(--primary);
}

.feature-main-box:hover::before {
          transform: scaleX(1);
}

.features-logo {
          width: 70px;
          height: 70px;
          margin: 0 auto 1.5rem;
          background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
          border-radius: 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2rem;
          color: var(--accent);
}

.feature-main-box h3 {
          font-size: 1.4rem;
          margin-bottom: 1rem;
          color: var(--accent);
}

.feature-main-box p {
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 1.5rem;
          font-size: 0.95rem;
}

.feature-main-box .btn-outline {
          padding: 0.6rem 1.5rem;
          font-size: 0.9rem;
}

/* Tool Sections */
.tool-section {
          background: var(--card-bg);
          backdrop-filter: blur(10px);
          border: 1px solid var(--border);
          border-radius: 20px;
          padding: 3rem;
          margin-bottom: 3rem;
          position: relative;
          overflow: hidden;
}

.tool-section::after {
          content: '';
          position: absolute;
          top: -50%;
          right: -50%;
          width: 400px;
          height: 400px;
          background: radial-gradient(circle, rgba(249, 116, 21, 0.05) 0%, transparent 70%);
          pointer-events: none;
}

.section-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 2.5rem;
          padding-bottom: 1.5rem;
          border-bottom: 2px solid var(--border);
}

.section-header h2 {
          font-size: 2rem;
          display: flex;
          align-items: center;
          gap: 15px;
          color: var(--accent);
}

.section-header h2 i {
          color: var(--primary);
          font-size: 2.2rem;
}

.info-badge {
          background: rgba(249, 116, 21, 0.1);
          color: var(--primary);
          padding: 0.5rem 1rem;
          border-radius: 20px;
          font-size: 0.85rem;
          font-weight: 600;
          border: 1px solid var(--border);
}

.section-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
          align-items: start;
}

/* Upload Area */
.upload-area {
          border: 2px dashed var(--border);
          border-radius: 16px;
          padding: 4rem 2rem;
          text-align: center;
          transition: var(--transition);
          cursor: pointer;
          background: rgba(23, 32, 60, 0.3);
          position: relative;
}

.upload-area:hover {
          border-color: var(--primary);
          background: rgba(249, 116, 21, 0.05);
}

.upload-icon {
          width: 80px;
          height: 80px;
          margin: 0 auto 1.5rem;
          background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2.5rem;
          color: var(--accent);
}

.upload-area h3 {
          font-size: 1.4rem;
          margin-bottom: 1rem;
          color: var(--accent);
}

.upload-area p {
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 0.5rem;
}

.upload-area .small-text {
          font-size: 0.85rem;
          color: rgba(255, 255, 255, 0.5);
}

/* Preview Container */
.preview-container {
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
}

.preview-box {
          background: var(--secondary);
          border: 2px solid var(--border);
          border-radius: 16px;
          aspect-ratio: 9/16;
          max-height: 500px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          color: rgba(255, 255, 255, 0.3);
          font-size: 1.2rem;
          gap: 1rem;
          position: relative;
          overflow: hidden;
}

.preview-box i {
          font-size: 3rem;
          color: var(--primary);
}

.preview-box video {
          width: 100%;
          height: 100%;
          object-fit: cover;
}

/* Options */
.option-group {
          background: rgba(23, 32, 60, 0.5);
          border: 1px solid var(--border);
          border-radius: 12px;
          padding: 1.5rem;
}

.option-label {
          font-weight: 600;
          margin-bottom: 1rem;
          color: var(--accent);
          font-size: 1rem;
}

.options {
          display: flex;
          flex-wrap: wrap;
          gap: 0.8rem;
}

.option {
          padding: 0.7rem 1.5rem;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid var(--border);
          border-radius: 8px;
          cursor: pointer;
          transition: var(--transition);
          color: var(--accent);
          font-weight: 500;
}

.option:hover {
          background: rgba(249, 116, 21, 0.1);
          border-color: var(--primary);
}

.option.active {
          background: var(--primary);
          color: var(--secondary);
          border-color: var(--primary);
}

/* Controls */
.controls {
          display: flex;
          gap: 1rem;
          justify-content: center;
}

.controls .btn {
          flex: 1;
}

/* Updated Stats Section - AdSense Compliant */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
    padding: 2rem 0;
}

.stat-box {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.stat-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    position: relative;
    overflow: hidden;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    transition: var(--transition);
}

.stat-box:hover .stat-icon::after {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Stats */
@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 2rem 0 3rem;
    }
    
    .stat-box {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-content h3 {
        font-size: 1.2rem;
    }
}

/* NEW SECTION - How It Works */
.how-it-works-section {
          padding: 5rem 0;
          position: relative;
}

.workflow-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 3rem;
          margin-top: 4rem;
          position: relative;
}

/* =============================================
   NOTIFICATION SYSTEM STYLES
   Replaces alert dialogs with modern notifications
   ============================================= */

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease-out;
    max-width: 350px;
    backdrop-filter: blur(10px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: rgba(46, 204, 113, 0.9);
    border-left: 5px solid #27ae60;
}

.notification.error {
    background: rgba(231, 76, 60, 0.9);
    border-left: 5px solid #c0392b;
}

.notification.info {
    background: rgba(52, 152, 219, 0.9);
    border-left: 5px solid #2980b9;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Animation for mobile devices */
@media (max-width: 768px) {
    .notification {
        top: 80px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Connecting line between steps */
.workflow-container::before {
          content: '';
          position: absolute;
          top: 80px;
          left: 15%;
          right: 15%;
          height: 3px;
          background: linear-gradient(90deg,
                              var(--primary) 0%,
                              var(--primary) 25%,
                              transparent 25%,
                              transparent 50%,
                              var(--primary) 50%,
                              var(--primary) 75%,
                              transparent 75%,
                              transparent 100%);
          background-size: 40px 3px;
          z-index: 0;
}

.workflow-step {
          background: var(--card-bg);
          backdrop-filter: blur(10px);
          border: 1px solid var(--border);
          border-radius: 20px;
          padding: 2.5rem 2rem;
          text-align: center;
          transition: var(--transition);
          position: relative;
          z-index: 1;
}

.workflow-step:hover {
          transform: translateY(-12px);
          box-shadow: var(--shadow);
          border-color: var(--primary);
}

.step-number {
          width: 80px;
          height: 80px;
          margin: 0 auto 1.5rem;
          background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2rem;
          font-weight: 800;
          color: var(--accent);
          position: relative;
          box-shadow: 0 8px 24px rgba(249, 116, 21, 0.4);
}

.step-number::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          border: 2px solid var(--primary);
          animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

          0%,
          100% {
                    transform: scale(1);
                    opacity: 1;
          }

          50% {
                    transform: scale(1.15);
                    opacity: 0;
          }
}

.workflow-step h3 {
          font-size: 1.5rem;
          margin-bottom: 1rem;
          color: var(--accent);
          font-weight: 700;
}

.workflow-step p {
          color: rgba(255, 255, 255, 0.75);
          line-height: 1.7;
          font-size: 0.95rem;
}

.workflow-step .step-icon {
          font-size: 2.5rem;
          color: var(--primary);
          margin-bottom: 1rem;
}

/* NEW SECTION - Testimonials */
.testimonials-section {
          padding: 5rem 0;
          position: relative;
}

.testimonials-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
          margin-top: 3rem;
}

.testimonial-card {
          background: var(--card-bg);
          backdrop-filter: blur(10px);
          border: 1px solid var(--border);
          border-radius: 20px;
          padding: 2.5rem;
          transition: var(--transition);
          position: relative;
          overflow: hidden;
}

.testimonial-card:hover {
          transform: translateY(-8px);
          box-shadow: var(--shadow);
          border-color: var(--primary);
}

.testimonial-card::before {
          content: '"';
          position: absolute;
          top: 20px;
          right: 30px;
          font-size: 6rem;
          color: rgba(249, 116, 21, 0.1);
          font-family: Georgia, serif;
          line-height: 1;
}

.testimonial-content {
          position: relative;
          z-index: 1;
}

.testimonial-text {
          color: rgba(255, 255, 255, 0.9);
          font-style: italic;
          line-height: 1.7;
          margin-bottom: 1.5rem;
          font-size: 1rem;
}

.testimonial-author {
          display: flex;
          align-items: center;
          gap: 1rem;
}

.author-avatar {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--accent);
          font-weight: 600;
          font-size: 1.2rem;
}

.author-info h4 {
          color: var(--accent);
          margin-bottom: 0.3rem;
          font-size: 1.1rem;
}

.author-info p {
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.9rem;
}

.testimonial-rating {
          display: flex;
          gap: 0.3rem;
          margin-bottom: 1rem;
}

.testimonial-rating i {
          color: var(--primary);
          font-size: 1rem;
}

/* About Section - Unique & Creative Design */
.about-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 116, 21, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 116, 21, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(23, 32, 60, 0.3) 0%, rgba(13, 17, 23, 0.3) 100%);
    z-index: -2;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 116, 21, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 6s ease-in-out infinite;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.about-card {
    background: rgba(23, 32, 60, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(249, 116, 21, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 25%, 
        #ff8c42 50%, 
        var(--primary) 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.about-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    position: relative;
    box-shadow: 0 15px 35px rgba(249, 116, 21, 0.4);
}

.about-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid rgba(249, 116, 21, 0.3);
    animation: ripple 3s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.about-card h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.about-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 116, 21, 0.2);
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(249, 116, 21, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-feature span {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-security-badge {
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(249, 116, 21, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
}

.about-security-badge:hover {
    background: rgba(249, 116, 21, 0.2);
    transform: scale(1.05);
}

.about-security-badge i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Animation for about card */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.about-card {
    animation: float 6s ease-in-out infinite;
}

/* Info & FAQ Section */
.info-faq-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(13, 17, 23, 0.8) 0%, 
        rgba(23, 32, 60, 0.8) 100%);
    overflow: hidden;
}

.info-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(249, 116, 21, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(249, 116, 21, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.info-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(249, 116, 21, 0) 0%, 
        rgba(249, 116, 21, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.info-card:hover::before {
    opacity: 1;
}

.highlight-card {
    border: 2px solid rgba(249, 116, 21, 0.3);
    background: linear-gradient(135deg, 
        rgba(23, 32, 60, 0.8) 0%, 
        rgba(249, 116, 21, 0.1) 100%);
}

.highlight-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, 
        rgba(23, 32, 60, 0.9) 0%, 
        rgba(249, 116, 21, 0.15) 100%);
}

.security-card {
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.security-card:hover {
    border-color: #4CAF50;
}

.info-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
    z-index: 2;
    position: relative;
}

.info-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(249, 116, 21, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(249, 116, 21, 0.4);
}

.security-card .info-icon-wrapper i {
    color: #4CAF50;
}

.security-card .icon-badge {
    background: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.info-card h3 {
    font-size: 1.6rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-list {
    list-style: none;
    margin-bottom: 2rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.info-list li:hover {
    background: rgba(249, 116, 21, 0.08);
    transform: translateX(5px);
}

.info-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-card .info-list li i {
    color: #4CAF50;
}

.info-list li span {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 0.95rem;
}

.price-badge {
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 1.5rem auto;
    max-width: 200px;
    box-shadow: 0 8px 24px rgba(249, 116, 21, 0.3);
    transition: var(--transition);
}

.price-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(249, 116, 21, 0.4);
}

.price-main {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.price-sub {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.security-features {
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin: 1.5rem 0;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.3);
    transition: var(--transition);
}

.security-badge:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-3px);
}

.security-badge i {
    font-size: 1.2rem;
}

.info-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: auto;
}

.info-footer i {
    color: var(--primary);
}

.security-card .info-footer i {
    color: #4CAF50;
}

.trust-banner {
    background: linear-gradient(135deg, 
        rgba(249, 116, 21, 0.1) 0%, 
        rgba(23, 32, 60, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 100% 0%, rgba(249, 116, 21, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(249, 116, 21, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.trust-banner i {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-banner h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.trust-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.trust-banner .btn {
    margin-left: auto;
    white-space: nowrap;
    font-style: none;
    text-decoration: none;
    background-color: #f97415;
}

/* Responsive Design for Info Section */
@media (max-width: 1024px) {
    .info-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-faq-section {
        padding: 3rem 0;
    }
    
    .info-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .trust-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .trust-banner .btn {
        margin-left: 0;
        width: 100%;
        max-width: 250px;
    }
    
    .price-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.4rem;
    }
    
    .info-list li {
        padding: 0.6rem;
    }
    
    .info-list li span {
        font-size: 0.9rem;
    }
    
    .trust-banner {
        padding: 1.5rem;
    }
    
    .trust-banner h4 {
        font-size: 1.2rem;
    }
    
    .trust-banner i {
        font-size: 2.5rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-bg) 100%);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff8c42 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
}

.footer-col:first-child {
    padding-right: 2rem;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.footer-col:hover h3::after {
    width: 60px;
}

.footer-col:first-child p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}
/* Brand Section */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(249, 116, 21, 0.3));
    background-clip: text;
}

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin: 0;
    background-clip: text;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 400px;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid rgba(249, 116, 21, 0.3);
}

/* Links Sections */
.footer-links-section {
    display: flex;
    flex-direction: column;
}

.links-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.links-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.links-grid {
    display: grid;
    gap: 0.8rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.footer-link:hover {
    color: var(--primary);
    background: rgba(249, 116, 21, 0.08);
    border-color: rgba(249, 116, 21, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-link i {
    font-size: 1rem;
    width: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-link:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-link span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 116, 21, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: rgba(249, 116, 21, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 116, 21, 0.2);
}

.social-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}


.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
}

.footer-col ul li::before {
    content: '▶';
    position: absolute;
    left: -20px;
    color: var(--primary);
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-col ul li:hover {
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-col ul li:hover::before {
    opacity: 1;
    left: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.footer-col a:hover::after {
    width: 100%;
}

/* Newsletter Section (Optional Addition) */
.newsletter-section {
    background: rgba(249, 116, 21, 0.05);
    border: 1px solid rgba(249, 116, 21, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.newsletter-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(249, 116, 21, 0.3);
    border-radius: var(--radius);
    background: rgba(23, 32, 60, 0.5);
    color: var(--accent);
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(249, 116, 21, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 116, 21, 0.4);
}

/* =============================================
   DISCLAIMER SECTION STYLES
   ============================================= */

/* Main Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, 
        rgba(249, 116, 21, 0.08) 0%, 
        rgba(23, 32, 60, 0.5) 100%);
    border: 1px solid rgba(249, 116, 21, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.disclaimer-section:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(249, 116, 21, 0.15);
    transform: translateY(-5px);
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        #ff8c42 50%, 
        var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.disclaimer-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), rgba(249, 116, 21, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(249, 116, 21, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(249, 116, 21, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(249, 116, 21, 0.6);
    }
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
}

.disclaimer-content h3 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.upload-disclaimer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    position: relative;
}

.upload-disclaimer::before {
    content: '⚠️';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(249, 116, 21, 0.2);
    border-radius: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.legal-links a:hover {
    background: rgba(249, 116, 21, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 116, 21, 0.2);
}

.legal-links a i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(249, 116, 21, 0.1);
    border: 1px solid rgba(249, 116, 21, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin: 2rem 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
}

.footer-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.footer-disclaimer i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-disclaimer p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .disclaimer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-icon {
        align-self: center;
    }
    
    .disclaimer-content h3 {
        justify-content: center;
    }
    
    .upload-disclaimer {
        padding: 1rem;
        font-size: 1.05rem;
        text-align: left;
    }
    
    .upload-disclaimer::before {
        display: none;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .legal-links a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .footer-disclaimer i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .legal-links a {
        justify-content: center;
        text-align: center;
    }
    
    .disclaimer-content h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* copyright-area Section */
.copyright-area {
    text-align: center;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(249, 116, 21, 0.2);
    margin-top: 3rem;
    position: relative;
}

.copyright-area::before {
    content: '🎬';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    padding: 0 1rem;
    font-size: 1.2rem;
}

/* =============================================
   RESPONSIVE MEDIA QUERIES
   ============================================= */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .feature-main-box {
        flex: 0 0 calc(25% - 1.5rem);
    }
    
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-area h1 {
        font-size: 3.5rem;
    }
}

/* Desktop (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .feature-main-box {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-area h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Small Desktop / Large Tablet (992px to 1023px) */
@media (max-width: 1023px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-area h1 {
        font-size: 2.8rem;
    }
    
    .workflow-container::before {
        display: none;
    }
    
    .feature-main-box {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .brand-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: none;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .reel-builder-container {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .info-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .logo {
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .user-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hero-area {
        padding: 3rem 0;
    }
    
    .hero-area h1 {
        font-size: 2.5rem;
    }
    
    .hero-area p {
        font-size: 1.1rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tool-section {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .controls {
        flex-direction: column;
    }
    
    .workflow-container {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .reel-display {
        height: 400px;
    }
    
    /* Footer Stacking - Brand at Top */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul li::before {
        display: none;
    }
    
    .footer-col ul li:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
    
    .footer-col a:hover {
        transform: translateX(0) translateY(-2px);
    }
    
    .footer-col a::after {
        left: 50%;
        transform: translateX(-50%);
        width: 0;
    }
    
    .footer-col a:hover::after {
        width: 50%;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-card {
        padding: 2.5rem 1.5rem;
    }
    
    .about-card h2 {
        font-size: 2.2rem;
    }
    
    .about-card p {
        font-size: 1.1rem;
    }
    
    .about-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
    }
    
    .about-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .info-faq-section {
        padding: 3rem 0;
    }
    
    .info-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .trust-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .trust-banner .btn {
        margin-left: 0;
        width: 100%;
        max-width: 250px;
    }
    
    .disclaimer-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .disclaimer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-icon {
        align-self: center;
    }
    
    .disclaimer-content h3 {
        justify-content: center;
    }
    
    .upload-disclaimer {
        padding: 1rem;
        font-size: 1rem;
        text-align: left;
    }
    
    .upload-disclaimer::before {
        display: none;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    /* Timeline responsive */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-step:nth-child(even) {
        left: 0;
    }
    
    .timeline-step::after {
        left: 18px;
        right: auto;
    }
    
    .timeline-step:nth-child(odd) .timeline-content,
    .timeline-step:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-step:nth-child(odd) .step-number,
    .timeline-step:nth-child(even) .step-number {
        float: left;
        margin-right: 15px;
        margin-left: 0;
    }
    
    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .footer-disclaimer i {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Mobile Landscape (600px to 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .workflow-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-main-box {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (480px to 599px) */
@media (max-width: 599px) {
    .hero-area h1 {
        font-size: 2rem;
    }
    
    .hero-area p {
        font-size: 1rem;
    }
    
    .hero-area .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    main{
        padding: 2rem .7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .features-container {
        gap: 1rem;
    }
    
    .feature-main-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .disclaimer-section {
        padding: 1rem .5rem;
        margin: 2rem 1rem;
    }

    .about-section {
        padding: 1rem 0rem;
    }

    .about-container{
        padding: 1rem .5rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .workflow-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workflow-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tool-section {
        padding: 1.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 i {
        font-size: 1.8rem;
    }
    
    .preview-box {
        aspect-ratio: 9/16;
        max-height: 400px;
    }
    
    .option-group {
        padding: 1rem;
    }
    
    .option {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .about-card {
        padding: 2rem 1rem;
    }
    
    .about-card h2 {
        font-size: 1.8rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
    
    .about-security-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .info-cards-container{
        padding: 0 1rem;
    }

    .info-card {
        padding: 1rem;
    }
    
    .info-card h3 {
        font-size: 1.4rem;
    }
    
    .info-list li {
        padding: 0.6rem;
    }
    
    .info-list li span {
        font-size: 0.9rem;
    }
    
    .price-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .legal-links a {
        justify-content: center;
        text-align: center;
    }
    
    .disclaimer-content h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
        margin-top: 4rem;
    }
    
    .footer-logo i {
        font-size: 2.2rem;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .brand-tagline {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
    }
    
    .copyright-area {
        font-size: 0.8rem;
        padding-top: 2rem;
    }
    
    .copyright-area::before {
        top: -10px;
        font-size: 1rem;
    }
    
    .notification {
        top: 80px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Small Mobile (320px to 479px) */
@media (max-width: 479px) {
    .hero-area h1 {
        font-size: 1.8rem;
    }
    
    .hero-area p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-content h3 {
        font-size: 1.2rem;
    }
    
    .stat-content p {
        font-size: 0.9rem;
    }
    
    .workflow-step h3 {
        font-size: 1.3rem;
    }
    
    .workflow-step p {
        font-size: 0.9rem;
    }
    
    .preview-box {
        aspect-ratio: 9/16;
        max-height: 300px;
    }
    
    .about-feature {
        padding: 0.8rem 1rem;
    }
    
    .about-feature i {
        font-size: 1rem;
    }
    
    .about-feature span {
        font-size: 0.9rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .icon-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .trust-banner {
        padding: 1.5rem;
    }
    
    .trust-banner i {
        font-size: 2.5rem;
    }
    
    .trust-banner h4 {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        gap: 8px;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-col ul li {
        font-size: 0.9rem;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    header {
        padding: 0.8rem 0;
    }
    
    .hero-area {
        padding: 2rem 0;
    }
    
    .hero-area h1 {
        font-size: 2rem;
    }
    
    .features-section,
    .how-it-works-section,
    .about-section,
    .info-faq-section {
        padding: 1rem 0;
    }
    
    .workflow-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .preview-box {
        max-height: 250px;
    }
    
    .notification {
        top: 60px;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .user-actions,
    .btn,
    .social-links,
    .newsletter-section,
    .notification {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-gradient {
        -webkit-text-fill-color: black;
        background: none;
        color: black;
    }
    
    .feature-main-box,
    .stat-box,
    .workflow-step,
    .about-card,
    .info-card {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* High Resolution / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-gradient {
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary,
    .feature-main-box,
    .stat-box {
        border-width: 1px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-bg: #0a0e1a;
        --secondary: #1a2340;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .feature-main-box:hover,
    .stat-box:hover,
    .workflow-step:hover,
    .social-link:hover {
        transform: none;
    }
    
    .btn,
    .social-link,
    .option,
    .footer-col a {
        min-height: 44px;
        min-width: 44px;
    }
    
    input,
    select,
    textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}