/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-ghost {
    background: transparent;
    color: #3b82f6;
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: #f1f5f9;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
}

.btn-green {
    background: #10b981;
    color: white;
}

.btn-green:hover {
    background: #059669;
}

.btn-blue {
    background: #3b82f6;
    color: white;
}

.btn-blue:hover {
    background: #2563eb;
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Links */
.link {
    color: #3b82f6;
    text-decoration: underline;
}

.link:hover {
    color: #2563eb;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    padding: 12px 0;
    text-align: center;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.promo-icon {
    font-size: 16px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.nav-link:hover {
    color: #3b82f6;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #64748b;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 128px;
    height: 128px;
    background: #3b82f6;
    top: 80px;
    left: 40px;
}

.floating-2 {
    width: 96px;
    height: 96px;
    background: #06b6d4;
    top: 160px;
    right: 80px;
    animation-delay: 2s;
}

.floating-3 {
    width: 80px;
    height: 80px;
    background: #10b981;
    bottom: 80px;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    space-y: 2rem;
}

/* Awards */
.awards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.award-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(8px);
}

.award-img {
    height: 32px;
    width: auto;
}

/* Hero Main Content */
.hero-main {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 2rem;
}

.risk-disclaimer {
    margin-top: 1rem;
    font-size: 14px;
    color: #64748b;
}

.risk-link {
    color: #3b82f6;
    text-decoration: underline;
}

/* App Downloads */
.app-downloads {
    display: flex;
    gap: 1rem;
}

.app-download {
    transition: opacity 0.3s ease;
}

.app-download:hover {
    opacity: 0.8;
}

.app-img {
    height: 40px;
    width: auto;
}

/* Phone Mockups */
.hero-right {
    position: relative;
    height: 400px;
}

.phone-mockups {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone {
    position: absolute;
    background: white;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.phone-main {
    width: 192px;
    height: 384px;
    top: 0;
    right: 80px;
    transform: rotate(12deg);
    z-index: 2;
}

.phone-secondary {
    width: 160px;
    height: 320px;
    top: 40px;
    left: 40px;
    transform: rotate(-6deg);
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-header {
    height: 24px;
    background: #3b82f6;
    border-radius: 4px;
    width: 75%;
}

.phone-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-chart {
    font-size: 2rem;
    color: #10b981;
}

.phone-icon {
    font-size: 1.5rem;
    color: #3b82f6;
}

.floating-icon {
    position: absolute;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-target {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-chart {
    bottom: 40px;
    right: 40px;
    animation-delay: 3s;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #bfdbfe;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #3b82f6;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

.features-bottom {
    text-align: center;
}

.etf-disclaimer {
    background: #f8fafc;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.etf-disclaimer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: #f8fafc;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.reviews-left {
    space-y: 1.5rem;
}

.rating-summary {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.star {
    color: #10b981;
    font-size: 1.25rem;
}

.star.gold {
    color: #f59e0b;
    font-size: 2rem;
}

.rating-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-left: 8px;
}

.trustpilot-badge {
    background: #10b981;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.trustpilot-text {
    font-size: 14px;
}

.review-stats, .review-filter {
    font-size: 14px;
    color: #64748b;
}

.reviews-right {
    space-y: 1rem;
}

.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.verified-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #e2e8f0;
}

.review-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.review-text {
    color: #64748b;
    margin-bottom: 12px;
}

.review-author {
    font-size: 12px;
    color: #94a3b8;
}

.author-name {
    font-weight: 500;
}

.review-date {
    margin-left: 4px;
}

/* Customer Love */
.customer-love {
    text-align: center;
}

.love-stars {
    margin-bottom: 1rem;
}

.love-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.love-stats {
    color: #64748b;
    margin-bottom: 2rem;
}

.smart-money-badge {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.view-text {
    color: #64748b;
    font-size: 14px;
}

.sm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sm-icon {
    width: 32px;
    height: 32px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.sm-text {
    font-weight: 600;
    color: #1e293b;
}

/* Accounts Section */
.accounts {
    padding: 5rem 0;
    background: white;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.account-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.account-header {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.account-card:hover .account-header {
    transform: scale(1.05);
}

.account-isa {
    background: #dbeafe;
}

.account-sipp {
    background: #ede9fe;
}

.account-general {
    background: #dcfce7;
}

.account-business {
    background: #fed7aa;
}

.account-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.account-isa .account-title {
    color: #2563eb;
}

.account-sipp .account-title {
    color: #7c3aed;
}

.account-general .account-title {
    color: #059669;
}

.account-business .account-title {
    color: #ea580c;
}

.account-content {
    padding: 1.5rem;
    space-y: 1.5rem;
}

.account-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accounts-info {
    text-align: center;
    background: #dbeafe;
    border-radius: 8px;
    padding: 1.5rem;
    color: #64748b;
}

/* ETF Providers Section */
.etf-providers {
    padding: 5rem 0;
    background: #f8fafc;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.provider-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.provider-logo {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.provider-card:hover .provider-logo {
    transform: scale(1.1);
}

.placeholder-logo {
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.providers-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 3rem;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background: #3b82f6;
}

.nav-dot:hover {
    background: #94a3b8;
}

.providers-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    space-y: 1rem;
}

.footer-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    space-y: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.address-section p {
    color: #64748b;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3b82f6;
}

.footer-apps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    space-y: 1rem;
}

.risk-warning h5 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.risk-warning p {
    font-size: 12px;
    color: #64748b;
}

.company-info {
    space-y: 0.5rem;
}

.company-info p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.copyright {
    font-weight: 500;
    color: #1e293b !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reviews-content {
        grid-template-columns: 1fr;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .accounts-grid {
        grid-template-columns: 1fr;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-address {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .phone-mockups {
        height: 300px;
    }

    .phone-main {
        width: 120px;
        height: 240px;
    }

    .phone-secondary {
        width: 100px;
        height: 200px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.space-y-1rem > * + * {
    margin-top: 1rem;
}

.space-y-1\.5rem > * + * {
    margin-top: 1.5rem;
}

.space-y-2rem > * + * {
    margin-top: 2rem;
}

#teest{
    height: 2rem;
    width: 10rem;
}