/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(100, 149, 237, 0.1) 0.5px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 149, 237, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6495ED;
    text-decoration: none;
}

.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6495ED;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6495ED;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.download-btn {
    background: linear-gradient(135deg, #6495ED, #add8e6);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 149, 237, 0.3);
}

.download-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title-main {
    display: block;
    color: #333;
    font-size: 3rem;
}

.hero-title-main-2 {
    display: block;
    color: #555;
    font-size: 2.5rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

.hero-title-brand {
    display: block;
    background: linear-gradient(135deg, #6495ED 0%, #add8e6 50%, #87CEEB 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-size: 4rem;
    margin-top: 15px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    max-width: 90%;
    line-height: 1.6;
    font-weight: 500;
}

.hero-subtitle strong {
    color: #6495ED;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 85%;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #6495ED, #add8e6);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 149, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 149, 237, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #6495ED;
    border: 2px solid #6495ED;
}

.btn-secondary:hover {
    background: #6495ED;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* Hero Mockup Flip Container */
.hero-mockup-container {
    perspective: 1000px;
    max-width: 400px;
    margin: 0 auto;
}

.hero-mockup-flipper {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mockup-flipper.flipped {
    transform: rotateY(180deg);
}

.hero-mockup-side {
    position: relative;
    width: 100%;
    backface-visibility: hidden;
}

.hero-mockup-front {
    transform: rotateY(0deg);
}

.hero-mockup-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(180deg);
}

.floating-task, .floating-task-dynamic {
    position: absolute;
    background: #add8e6;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(173, 216, 230, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.hero-visual.calendar-mode .floating-task,
.hero-visual.calendar-mode .floating-task-dynamic {
    opacity: 0 !important;
    pointer-events: none;
}

.floating-task-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
    background: #B0C4DE;
}

.floating-task-2 {
    top: 150px;
    right: 200px;
    animation-delay: 1s;
    background: #FFB6C1;
}

.floating-task-3 {
    bottom: 100px;
    right: -20px;
    animation-delay: 2s;
    background: #F0E68C;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.task-content h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.task-meta {
    font-size: 0.7rem;
    color: #666;
}

.hero-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.mockup-header {
    background: linear-gradient(135deg, #6495ED, #add8e6);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mockup-buttons {
    display: flex;
    gap: 8px;
}

.mockup-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #28ca42; }

.mockup-title {
    color: white;
    font-weight: 600;
}

.mockup-content {
    padding: 20px;
    min-height: 250px;
    position: relative;
}

.mockup-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-tab {
    padding: 8px 16px;
    border: none;
    border-radius: 10px;
    background: #f0f0f0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mockup-tab.active {
    background: #B0C4DE;
    color: white;
}

/* Mockup Board */
.mockup-board {
    position: relative;
    height: 200px;
    background: inherit;
}

/* Full Calendar View */
.mockup-calendar-full {
    padding: 15px;
    height: 200px;
    overflow-y: auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 10px;
}

.calendar-header h3 {
    margin: 0;
    color: #6495ED;
    font-size: 1rem;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 0.75rem;
}

.calendar-day-header {
    padding: 4px 2px;
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.7rem;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.calendar-day-number {
    background: #f8f9fa;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
}

.calendar-day-number:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.calendar-day-number.today {
    background: #6495ED;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(100, 149, 237, 0.3);
}

.calendar-day-number.has-tasks {
    background: #e3f2fd;
    border: 1px solid #b3d9ff;
}

.calendar-day-number.today.has-tasks {
    background: #6495ED;
    color: white;
}

.task-indicator {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2196F3;
    border-radius: 50%;
    bottom: 2px;
}

.task-indicator:nth-child(2) {
    right: 8px;
}

.task-indicator:nth-child(3) {
    right: 4px;
    background: #4CAF50;
}

.task-indicator:nth-child(4) {
    right: 12px;
    background: #FF9800;
}

.mockup-add-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #6495ED;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(100, 149, 237, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(100, 149, 237, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(100, 149, 237, 0); }
}

/* Why Boxly Section */
.why-boxly {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(100, 149, 237, 0.05) 0%, rgba(173, 216, 230, 0.05) 100%);
    position: relative;
    z-index: 1;
}

.why-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-top: -40px;
    margin-bottom: 60px;
    font-weight: 500;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(100, 149, 237, 0.1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(100, 149, 237, 0.2);
    border-color: rgba(100, 149, 237, 0.3);
}

.competitor-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.competitor-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.competitor-label {
    display: inline-block;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.con-item, .pro-item {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.con-item {
    background: rgba(231, 76, 60, 0.05);
    color: #c0392b;
    border-left: 3px solid #e74c3c;
}

.pro-item {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border-left: 3px solid #2ecc71;
    font-weight: 600;
}

.con-item:hover, .pro-item:hover {
    transform: translateX(5px);
}

.usp-banner {
    background: linear-gradient(135deg, #6495ED 0%, #5a86d4 50%, #4a76c4 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(100, 149, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.usp-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.usp-content {
    position: relative;
    z-index: 1;
}

.usp-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.usp-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* AI Blocking Showcase */
.ai-blocking-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    margin-top: -40px;
    margin-bottom: 40px;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.same-site-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 50px;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.same-site-badge i {
    font-size: 1.5rem;
}

.blocking-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.blocking-scenario {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}

.vs-divider span {
    background: linear-gradient(135deg, #6495ED, #5a86d4);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(100, 149, 237, 0.4);
}

.flow-step {
    text-align: center;
}

.step-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.task-badge {
    background: linear-gradient(135deg, #6495ED, #5a86d4);
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(100, 149, 237, 0.35);
    animation: taskPulse 2s ease-in-out infinite;
}

@keyframes taskPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6495ED;
    font-weight: 600;
}

.flow-arrow i {
    font-size: 2rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.flow-arrow span {
    font-size: 0.9rem;
    color: #666;
}

.ai-thinking {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(100, 149, 237, 0.1), rgba(90, 134, 212, 0.1));
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 8px;
}

.ai-thinking i {
    color: #6495ED;
    font-size: 1.2rem;
    animation: brainPulse 1s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.browser-mockup {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px;
    overflow: hidden;
}

.browser-bar {
    background: #f5f5f5;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    flex: 1;
    background: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url i {
    color: #4CAF50;
    font-size: 0.8rem;
}

.youtube-search-bar {
    background: #f8f9fa;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Courier New', monospace;
}

.youtube-search-bar i {
    color: #999;
    font-size: 1rem;
}

.youtube-search-bar span {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.browser-content {
    min-height: 200px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.youtube-video-card {
    display: flex;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 160px;
    height: 90px;
    background: linear-gradient(135deg, #6495ED, #5a86d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-thumbnail.educational {
    background: linear-gradient(135deg, #6495ED, #5a86d4);
}

.video-thumbnail i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
}

.video-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.video-meta {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.browser-content.blocked-overlay {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.95));
}

.block-message {
    text-align: center;
    color: white;
    padding: 40px;
}

.block-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.block-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.block-message p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.block-hint {
    font-size: 1.3rem !important;
    margin-top: 15px !important;
    font-weight: 600;
}

.scenario-result {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.scenario-result i {
    font-size: 2rem;
}

.scenario-result strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.scenario-result p {
    color: #666;
    margin: 0;
}

.allowed-result {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
}

.allowed-result i {
    color: #27ae60;
}

.allowed-result strong {
    color: #27ae60;
}

.blocked-result {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
}

.blocked-result i {
    color: #e74c3c;
}

.blocked-result strong {
    color: #e74c3c;
}

.ai-explanation {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.explanation-card {
    background: linear-gradient(135deg, #6495ED, #5a86d4);
    color: white;
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(100, 149, 237, 0.3);
}

.explanation-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.explanation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.explanation-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.explanation-card strong {
    color: #FFD700;
    font-weight: 700;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #6495ED, #add8e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(100, 149, 237, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6495ED, #add8e6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(100, 149, 237, 0.25);
    border-color: rgba(100, 149, 237, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6495ED, #add8e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.feature-card p {
    color: #666;
    margin-bottom: 25px;
}

/* Feature Demos */
.feature-demo {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.demo-browser {
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #ddd;
}

.demo-task-context {
    background: linear-gradient(135deg, #6495ED, #5a86d4);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
}

.demo-url {
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.demo-status.blocked {
    color: #e74c3c;
    font-weight: 600;
    background: rgba(231, 76, 60, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid #e74c3c;
    animation: blockPulse 1.5s ease-in-out infinite;
}

@keyframes blockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

.demo-board {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-note {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: noteFloat 2s ease-in-out infinite;
}

.demo-note-blue { 
    background: #add8e6; 
    animation-delay: 0s;
}
.demo-note-pink { 
    background: #FFB6C1; 
    animation-delay: 0.5s;
}
.demo-note-yellow { 
    background: #F0E68C; 
    animation-delay: 1s;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.demo-calendar {
    text-align: center;
}

.demo-cal-header {
    font-weight: 600;
    margin-bottom: 15px;
    color: #6495ED;
}

.demo-cal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.demo-cal-day {
    padding: 10px;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-cal-day.active {
    background: #6495ED;
    color: white;
}

.demo-cal-day:hover {
    background: #B0C4DE;
    color: white;
}

.demo-task-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    top: 5px;
    right: 5px;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.demo-break {
    text-align: center;
}

.demo-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #6495ED;
    margin-bottom: 10px;
    animation: timerPulse 1s infinite;
}

@keyframes timerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.demo-break-text {
    color: #666;
    font-weight: 500;
}

.demo-class {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-class-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
}

.class-tag {
    background: #6495ED;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.canvas-badge {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6495ED;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6495ED, #add8e6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Installation Section */
.installation {
    padding: 100px 0;
    background: white;
}

.installation-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.installation-steps {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.install-step {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 25px;
}

.install-step:hover {
    border-color: #add8e6;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(173, 216, 230, 0.2);
}

.install-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.install-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6495ED, #add8e6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.install-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.install-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.install-step-content {
    flex: 1;
}

.install-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #6495ED;
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 80px;
}

.install-step:hover .install-visual {
    opacity: 1;
    transform: scale(1.1);
}

.install-visual.success {
    color: #28a745;
}

.toggle-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
    flex-direction: column;
}

.toggle {
    width: 40px;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle.active {
    background: #6495ED;
}

.toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle.active::after {
    transform: translateX(20px);
}

/* Chrome Web Store Install */
.chrome-store-install {
    text-align: center;
    padding: 40px 0;
}

.btn-chrome-store {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.btn-chrome-store:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #3367D6, #2E7D32);
}

.install-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.install-alternative {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.alt-install-text {
    color: #666;
    font-size: 1rem;
}

.alt-install-text strong {
    color: #333;
    font-weight: 600;
}

.alt-install-text a {
    color: #6495ED;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.alt-install-text a:hover {
    color: #4a76c4;
    text-decoration: underline;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #6495ED, #add8e6);
    color: white;
    text-align: center;
}

.download .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.download-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 50px;
    font-weight: 500;
}

.download-hero {
    margin-bottom: 50px;
}

.btn-chrome-store-large {
    background: white;
    color: #333;
    padding: 25px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-chrome-store-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-chrome-store-large i {
    font-size: 2.5rem;
    color: #4285F4;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-main {
    font-size: 1.5rem;
    color: #333;
}

.btn-sub {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
}

.download-feature i {
    font-size: 2rem;
    opacity: 0.9;
}

.download-feature span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #add8e6;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #add8e6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #add8e6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #6495ED;
    transform: translateY(-3px);
}

.version {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #6495ED;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #add8e6;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-main-2 {
        font-size: 1.8rem;
    }

    .hero-title-brand {
        font-size: 2.8rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .usp-banner {
        padding: 30px 20px;
    }

    .usp-banner h3 {
        font-size: 1.5rem;
    }

    .usp-banner p {
        font-size: 1rem;
    }

    .demo-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .install-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .install-visual {
        width: auto;
        font-size: 3rem;
    }
    
    .btn-chrome-store-large {
        padding: 20px 30px;
        gap: 15px;
    }

    .btn-chrome-store-large i {
        font-size: 2rem;
    }

    .btn-main {
        font-size: 1.2rem;
    }

    .btn-sub {
        font-size: 0.8rem;
    }

    .download-features {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-task {
        position: relative;
        margin: 10px auto;
        float: none;
    }
    
    .hero-mockup {
        transform: none;
        max-width: 90%;
    }

    .blocking-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vs-divider {
        padding-top: 0;
        padding: 20px 0;
    }

    .vs-divider span {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .same-site-badge {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .task-badge {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .browser-url {
        font-size: 0.75rem;
    }

    .flow-arrow i {
        font-size: 1.5rem;
    }

    .explanation-card {
        padding: 30px 25px;
    }

    .explanation-card h3 {
        font-size: 1.4rem;
    }

    .explanation-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}