/* CSS Reset and Global Styles */
:root {
    --primary-color: #000;
    --secondary-color: #1a1a1a;
    --tertiary-color: #333;
    --cyan-accent: #00d4ff;
    --purple-accent: #b000ff;
    --pink-accent: #ff006e;
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --container-max-width: 1200px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    z-index: 1000;
    transition: var(--transition-speed);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-speed);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #cccccc;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #b000ff);
    transition: width var(--transition-speed);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: linear-gradient(90deg, #00d4ff, #b000ff);
    transition: var(--transition-speed);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

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

.hero-text {
    max-width: 900px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 100%);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: #111111;
    border-color: #333;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #222222;
    border-color: var(--cyan-accent);
    color: var(--cyan-accent);
    transform: translateY(-3px) scale(1.02);
}

/* About Section */
.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-card p {
    color: var(--text-light);
}

@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Services Section */
.services {
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.service-card:hover {
    border-color: var(--cyan-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #b000ff, #ff006e);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-us {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.feature-item:hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* How It Works Section */
.how-it-works {
    background: #ffffff;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.step:hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step h3 {
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
}

.step p {
    color: var(--text-light);
}

/* Tech / How We Build Section */
.tech {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff5f9 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-speed);
}

.value-card:hover {
    border-color: var(--cyan-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta .btn-primary {
    color: #000;
}

/* Footer */
.footer {
    background: #111111;
    color: #ffffff;
    padding: 6rem 0 3rem;
    border-top: 1px solid #222;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-group h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-group ul li {
    color: #888;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-group ul li a {
    color: #888;
    transition: color 0.3s ease;
}

.footer-group ul li a:hover {
    color: var(--cyan-accent);
}

.footer-group i {
    color: var(--cyan-accent);
    font-size: 0.9rem;
    width: 15px;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-legal p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.footer-policy-links {
    display: flex;
    gap: 2rem;
}

.footer-policy-links a {
    font-size: 0.85rem;
    color: #666;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: #ffffff;
}

@media screen and (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links-grid {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-group ul li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-policy-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

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

    .hero-btns {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    section {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* --- Interactive & Animation Styles --- */

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for Grid Items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Enhanced Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan-accent);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.btn:active {
    transform: scale(0.98);
}

/* Subtle Hero Entrance */
.hero-title, .hero-subtitle, .hero-btns {
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle { animation-delay: 0.2s; opacity: 0; }
.hero-btns { animation-delay: 0.4s; opacity: 0; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Chatbot Styles --- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 100%);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.chatbot-container.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chatbot-header {
    background: #111111;
    padding: 1.5rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chatbot-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2px;
}

.chatbot-header p {
    font-size: 0.8rem;
    color: #999;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f9f9f9;
}

.message {
    max-width: 80%;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message {
    align-self: flex-start;
    background: #ffffff;
    color: var(--text-color);
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, #00d4ff 0%, #b000ff 100%);
    color: #000;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

.chatbot-input {
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.8rem;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid var(--border-color);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}

.chatbot-input input:focus {
    border-color: var(--cyan-accent);
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #111111;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.chatbot-input button:hover {
    background: #222;
    color: var(--cyan-accent);
}

@media screen and (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 40px);
        right: -10px;
        height: 450px;
    }
}

/* Quick Replies Styles */
.chatbot-quick-replies {
    padding: 0.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: #f9f9f9;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.quick-reply {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    color: var(--text-color);
}

.quick-reply:hover {
    border-color: var(--cyan-accent);
    color: var(--cyan-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.1);
}

/* Portfolio Section */
.portfolio {
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--cyan-accent);
}

.portfolio-image {
    width: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.portfolio-category {
    font-size: 0.9rem;
    color: var(--cyan-accent);
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.tag {
    background: #f0f7ff;
    color: #334e68;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e1e8f0;
}

.portfolio-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-color);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 1rem;
}

.portfolio-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    color: var(--purple-accent);
}

.portfolio-link:hover i {
    transform: translate(3px, -3px);
}

@media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section Styles */
.pricing {
    background-color: #fcfcfc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.pricing-card.popular {
    border: 2px solid #000;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.price {
    margin-bottom: 2rem;
    color: #000;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.price .plus {
    font-size: 2rem;
    font-weight: 600;
}

.features-list {
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li i {
    color: #000;
    font-size: 0.9rem;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-pricing:hover {
    background: #000;
    color: #fff;
}

.btn-pricing-primary {
    background: #000;
    color: #fff;
}

.btn-pricing-primary:hover {
    background: #333;
    border-color: #333;
}

.pricing-footer {
    margin-top: 4rem;
    text-align: center;
    color: #666;
}

.pricing-footer a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

/* Other Services Styles */
.other-services {
    background-color: #fff;
}

.services-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.service-other-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.service-other-card:hover {
    border-color: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.service-other-icon {
    font-size: 3rem;
    color: #000;
    margin-bottom: 2rem;
}

.service-other-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.service-other-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.btn-service {
    background: #000;
    color: #fff;
    padding: 1rem 2.5rem;
}

.btn-service:hover {
    background: #333;
    transform: translateY(-3px);
}

@media screen and (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    .services-other-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .price .amount {
        font-size: 2.8rem;
    }
    .service-other-card {
        padding: 2.5rem 1.5rem;
    }
}
