/* URU POS Landing Page Styles */
/* Brand Colors */
:root {
    --uru-blue: #1F3A5F;
    --uru-blue-dark: #153675;
    --pos-green: #2ECC71;
    --pos-mint: #6CECB8;

    --bg-primary: #F8FAFC;
    --bg-surface: #FFFFFF;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --border-color: #E2E8F0;

    --success: #2ECC71;
    --warning: #F6C344;
    --error: #E5533D;
    --info: #3182CE;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--uru-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--uru-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-action {
    background: linear-gradient(135deg, var(--pos-green) 0%, var(--pos-mint) 100%);
    color: white;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-img {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.nav-menu {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: var(--radius-md);
}

.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover {
    color: var(--uru-blue);
    background: rgba(31, 58, 95, 0.08);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--uru-blue) 0%, var(--uru-blue-dark) 50%, #0a1628 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-container {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.text-gradient {
    background: linear-gradient(90deg, var(--pos-green), var(--pos-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pos-mint);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-device {
    position: relative;
}

.device-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: white;
    padding: 8px;
}

.device-screen {
    border-radius: 12px;
    display: block;
    max-width: 400px;
}

.device-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--pos-green), var(--pos-mint));
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

.floating-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.floating-icon.success {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
}

.floating-icon.info {
    background: rgba(49, 130, 206, 0.15);
    color: var(--info);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--uru-blue), var(--uru-blue-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.problem-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Solution Transition */
.solution-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
}

.transition-line {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pos-green));
}

.transition-line:last-child {
    background: linear-gradient(90deg, var(--pos-green), transparent);
}

.transition-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pos-green), var(--pos-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.transition-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Solution Box */
.solution-box {
    background: linear-gradient(135deg, var(--uru-blue) 0%, var(--uru-blue-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    gap: 40px;
    align-items: center;
    color: white;
}

@media (min-width: 992px) {
    .solution-box {
        grid-template-columns: 1fr 1fr;
        padding: 60px;
    }
}

.tag-light {
    background: rgba(255, 255, 255, 0.2);
}

.solution-title {
    color: white;
    margin-bottom: 16px;
}

.solution-text {
    opacity: 0.9;
    margin-bottom: 24px;
}

.solution-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--pos-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.solution-image {
    display: flex;
    justify-content: center;
}

.solution-screenshot {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefit-featured {
        grid-column: span 2;
    }
}

.benefit-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pos-green);
}

.benefit-icon-wrapper {
    margin-bottom: 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(108, 236, 184, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.benefit-title {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.benefit-metric {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pos-green), var(--pos-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-primary);
}

.features-showcase {
    margin-bottom: 80px;
}

.feature-row {
    display: grid;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
}

.feature-row.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 992px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .feature-row-reverse .feature-content {
        order: 2;
    }

    .feature-row-reverse .feature-image {
        order: 1;
    }
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-title {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--pos-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* DGII Badge */
.dgii-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a5f2a 0%, #2ecc71 100%);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.dgii-icon {
    width: 22px;
    height: 22px;
    background: white;
    color: #1a5f2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-device {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-screenshot {
    display: block;
    max-width: 100%;
    border-radius: var(--radius-lg);
}

/* Mini Features Grid */
.features-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.mini-feature {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.mini-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mini-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.mini-feature h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.mini-feature p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* DGII Highlight Mini Feature */
.mini-feature.dgii-highlight {
    background: linear-gradient(135deg, var(--uru-blue) 0%, var(--uru-blue-dark) 100%);
    color: white;
    border-color: transparent;
}

.mini-feature.dgii-highlight h4 {
    color: white;
}

.mini-feature.dgii-highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.mini-feature.dgii-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 58, 95, 0.3);
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--uru-blue) 0%, var(--uru-blue-dark) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-container {
    max-width: 600px;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--pos-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.footer-tagline {
    opacity: 0.7;
    font-size: 14px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    gap: 32px;
}

@media (min-width: 480px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.footer-column a {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--pos-green);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}